55 lines
651 B
Plaintext
55 lines
651 B
Plaintext
# OS and editor noise
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.suo
|
|
*.swp
|
|
*.swo
|
|
|
|
# Local tooling
|
|
.claude/
|
|
|
|
# Environment and local overrides
|
|
.env
|
|
.env.*
|
|
*.local
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Node / frontend build output
|
|
frontend/node_modules/
|
|
frontend/.svelte-kit/
|
|
frontend/build/
|
|
frontend/dist/
|
|
frontend/dist-ssr/
|
|
frontend/coverage/
|
|
frontend/tmp/
|
|
|
|
# Python / backend build output
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.tox/
|
|
.nox/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
backend/pytest-cache-files-*/
|
|
|
|
# Local runtime data
|
|
backend/data/*.db
|