- Add frontend/dist and backend/dist to gitignore - Remove build artifacts from tracking - Add .dockerignore and .env.example Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
340 B
Plaintext
41 lines
340 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
frontend/dist/
|
|
backend/dist/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Documentation
|
|
docs/
|
|
|
|
# Cache
|
|
.cache/
|
|
.parcel-cache/
|