Files
balikci/backend/.dockerignore

47 lines
501 B
Plaintext
Raw Normal View History

2025-11-11 04:30:25 +03:00
# 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/
2025-11-11 05:02:08 +03:00
# Migrations and seeders (run in entrypoint, keep for reference)
# migrations/
# seeders/
# Scripts should be included (needed for admin creation)
# scripts/ - DO NOT IGNORE!
2025-11-11 04:30:25 +03:00
# Temporary
tmp/
temp/