TreeTrack / .gitignore
RoyAalekh's picture
Cleanup: remove migrations and llm.txt from tracking, keep local only
50ef528
raw
history blame
952 Bytes
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
*.egg
*.egg-info/
dist/
build/
.venv/
venv/
env/
# FastAPI/Uvicorn
*.log
app.log
# Database (excluding production db)
data/*.tmp
data/*.backup
data/trees.db
# Allow master_trees.db for deployment
# *.db - Allow trees.db for production
# *.sqlite - Allow for production
# *.sqlite3 - Allow for production
# Uploads
uploads/
*.jpg
*.jpeg
*.png
*.gif
*.mp3
*.wav
*.m4a
# Development files
.env
.env.local
.env.development
.env.test
.env.production
PASSWORDS.md
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Temporary files
*.tmp
*.temp
deployment_info.txt
CACHE_MANAGEMENT.md
# Documentation (keep local only)
llm.txt
API_REFERENCE.md
# Migrations (already applied, keep local only)
migrations/
# Jupyter
.ipynb_checkpoints/
# Docker
.dockerignore-cachebust
# Node.js (if any)
node_modules/
npm-debug.log
yarn-error.log