62 lines
505 B
Plaintext
62 lines
505 B
Plaintext
|
|
# Node modules
|
||
|
|
node_modules/
|
||
|
|
npm-debug.log
|
||
|
|
yarn-error.log
|
||
|
|
|
||
|
|
# Environment files
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
.env.*.local
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# OS
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
logs/
|
||
|
|
*.log
|
||
|
|
|
||
|
|
# Database (will be in volume)
|
||
|
|
database/
|
||
|
|
*.db
|
||
|
|
*.db-journal
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
dist/
|
||
|
|
build/
|
||
|
|
.cache/
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
docs/
|
||
|
|
|
||
|
|
# Docker
|
||
|
|
Dockerfile*
|
||
|
|
docker-compose*.yml
|
||
|
|
.dockerignore
|
||
|
|
|
||
|
|
# Deployment
|
||
|
|
deploy.sh
|
||
|
|
systemd/
|
||
|
|
nginx/
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
coverage/
|
||
|
|
.nyc_output/
|
||
|
|
|
||
|
|
# Temporary files
|
||
|
|
tmp/
|
||
|
|
temp/
|
||
|
|
|