XmLLM / .gitignore
Claude
Sprint 0: project foundation — structure, settings, FastAPI skeleton
96f8c0a unverified
Raw
History Blame Contribute Delete
504 Bytes
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
*.egg
dist/
build/
.eggs/
# Virtual environments
.venv/
venv/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Testing
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/
# Environment
.env
.env.local
.env.production
# Storage (local dev data)
data/
*.db
# OS
.DS_Store
Thumbs.db
# Uploads and job artifacts (local)
uploads/
exports/
# HuggingFace cache (local)
.huggingface/
# Node (frontend)
frontend/node_modules/
frontend/dist/