Add monorepo configuration and development environment

This commit is contained in:
2025-07-25 19:14:05 -03:00
parent cedf771f16
commit 9eb293ccb1
8 changed files with 523 additions and 173 deletions

55
.gitignore vendored
View File

@@ -1 +1,54 @@
.vscode/settings.json
# Dependencies
node_modules/
*/node_modules/
# Production builds
/app/www/
/app/dist/
/backend/dist/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Cache
.cache/
.parcel-cache/
.angular/
# Coverage
coverage/
.nyc_output/
# Docker
.dockerignore
# Database
*.db
*.sqlite
# Images (if large)
/backend/src/images/uploads/
# Temporary
tmp/
temp/