66 lines
617 B
Plaintext
66 lines
617 B
Plaintext
# Files to exclude from production zip
|
|
# These will be regenerated or are not needed on server
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# Node
|
|
node_modules/
|
|
.next/
|
|
.npm
|
|
.yarn
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
dev.log
|
|
|
|
# Database (will be created fresh or migrated)
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Backups
|
|
backups/
|
|
*.backup
|
|
*.bak
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Environment files (will be created from .env.production)
|
|
.env.local
|
|
.env.development
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|