64 lines
645 B
Plaintext
64 lines
645 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build outputs
|
|
frontend/dist/
|
|
frontend/build/
|
|
backend/dist/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Database files (will be created in container)
|
|
backend/database/*.db
|
|
backend/database/*.db-journal
|
|
|
|
# Test files
|
|
tests/
|
|
*.test.js
|
|
*.spec.js
|
|
coverage/
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Deployment scripts
|
|
deploy.sh
|
|
systemd/
|
|
nginx/
|
|
|
|
# Docker files (don't copy into itself)
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# Backups
|
|
backups/
|
|
|