fina/backup/first -fina app/.gitignore
2025-12-26 00:52:56 +00:00

52 lines
427 B
Text
Executable file

cat > .gitignore << 'EOF'
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
*.egg-info/
# Database
instance/
*.db
*.sqlite
*.sqlite3
# Uploads
app/static/uploads/*
!app/static/uploads/.gitkeep
# Environment
.env
.env.local
# Backups
backups/
*.tar
*.tar.gz
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
*.log
# Testing
.pytest_cache/
.coverage
htmlcov/
# Docker
*.tar.bak
EOF