- Exclude backend/src/data-backup/ from version control - Add common ignores: node_modules, .env, IDE files, logs
26 lines
227 B
Plaintext
26 lines
227 B
Plaintext
# Development data backups
|
|
backend/src/data-backup/
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|