.gitignore•995 B
# Python
# Virtual environment directory
venv/
.venv/
# Byte-code files
__pycache__/
*.pyc
*.pyd
*.pyo
*.egg-info
build/
dist/
# Logs and databases
*.log
*.sqlite3
/data/
# Environment files
# IMPORTANT: These files often contain sensitive API keys and credentials
.env
.flaskenv
.env.*
# Project structure artifacts
# Ignore the static files if they are generated or purely for the client-side
# We generally keep static/ for deployment, but if it contains large dependencies, you might ignore it.
# Assuming you want to keep 'static' for your front-end HTML/JS, but ignore common packages within.
static/node_modules/
# IDE/Editor files
.idea/ # PyCharm/IntelliJ
.vscode/ # VS Code
*.iml # PyCharm project file
*.sublime-project
*.sublime-workspace
# OS Generated files
.DS_Store
Thumbs.db
# Gemini/OpenAI SDK cache files (if generated)
# The google-genai SDK generally doesn't create large local caches, but good practice to include
__gemini_cache__/