44 lines
377 B
Plaintext
44 lines
377 B
Plaintext
|
|
# Node modules
|
||
|
|
node_modules/
|
||
|
|
npm-debug.log
|
||
|
|
|
||
|
|
# Environment files
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Database (will be in volume)
|
||
|
|
database/
|
||
|
|
*.db
|
||
|
|
*.db-journal
|
||
|
|
|
||
|
|
# Logs (will be in volume)
|
||
|
|
logs/
|
||
|
|
*.log
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
|
||
|
|
# OS
|
||
|
|
.DS_Store
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
coverage/
|
||
|
|
.nyc_output/
|
||
|
|
|
||
|
|
# Migrations (already applied)
|
||
|
|
migrations/
|
||
|
|
seeders/
|
||
|
|
|
||
|
|
# Temporary
|
||
|
|
tmp/
|
||
|
|
temp/
|
||
|
|
|