51 lines
521 B
Plaintext
51 lines
521 B
Plaintext
|
|
# Python
|
||
|
|
__pycache__/
|
||
|
|
**/*.pyc
|
||
|
|
**/*.pyo
|
||
|
|
**/.pytest_cache/
|
||
|
|
**/.ruff_cache/
|
||
|
|
**/.mypy_cache/
|
||
|
|
.venv/
|
||
|
|
venv/
|
||
|
|
*.egg-info/
|
||
|
|
.coverage
|
||
|
|
.coverage.*
|
||
|
|
htmlcov/
|
||
|
|
|
||
|
|
# Node / Frontend
|
||
|
|
**/node_modules/
|
||
|
|
frontend/dist/
|
||
|
|
frontend/.vite/
|
||
|
|
npm-debug.log*
|
||
|
|
yarn-*
|
||
|
|
|
||
|
|
# Environment & secrets
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
.env.*.local
|
||
|
|
|
||
|
|
# Data & uploads (kept on volumes, not in image)
|
||
|
|
data/
|
||
|
|
!data/.gitkeep
|
||
|
|
*.db
|
||
|
|
*.sqlite3
|
||
|
|
|
||
|
|
# IDE / OS
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
*.log
|
||
|
|
logs/
|
||
|
|
|
||
|
|
# Tests artifacts
|
||
|
|
.pytest_cache/
|
||
|
|
tests/.cache/
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git/
|
||
|
|
.gitignore
|