27 lines
305 B
Text
27 lines
305 B
Text
# Runtime secrets: never commit real values
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Python
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
*.egg-info/
|
|
|
|
# Node
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
packages/*/dist/
|
|
coverage/
|
|
*.tsbuildinfo
|
|
|
|
# Local/editor
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.log
|