This commit is contained in:
Iliyan Angelov
2025-11-24 16:47:37 +02:00
parent d7ff5c71e6
commit 0b1cabcfaf
45 changed files with 2021 additions and 28 deletions

65
.zipignore Normal file
View File

@@ -0,0 +1,65 @@
# 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/