1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # Dependencies
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- # Environment variables
- .env
- .env.local
- .env.development.local
- .env.test.local
- .env.production.local
- # Build outputs
- frontend/build/
- backend/dist/
- *.tgz
- *.tar.gz
- # Runtime data
- pids
- *.pid
- *.seed
- *.pid.lock
- # Coverage directory used by tools like istanbul
- coverage/
- *.lcov
- # nyc test coverage
- .nyc_output
- # IDE files
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- # OS generated files
- .DS_Store
- .DS_Store?
- ._*
- .Spotlight-V100
- .Trashes
- ehthumbs.db
- Thumbs.db
- # Docker
- .dockerignore
- # Logs
- logs
- *.log
- # Database
- *.sqlite3
- *.db
- # Temporary files
- tmp/
- temp/
|