28 lines
325 B
Text
28 lines
325 B
Text
# Local secrets and certs
|
|
.certs/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Python runtime
|
|
.venv/
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Local app data
|
|
cards.db
|
|
.todos/
|
|
|
|
# Frontend build and dependencies
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
|
|
# Editor / OS noise
|
|
.DS_Store
|