74 lines
922 B
Plaintext
74 lines
922 B
Plaintext
# Secrets and local environment
|
|
.env
|
|
.env.*
|
|
.env.gitea
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
*.pfx
|
|
secrets/
|
|
|
|
# OS and editor files
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs and runtime files
|
|
*.log
|
|
logs/
|
|
*.pid
|
|
*.seed
|
|
|
|
# Node / frontend artifacts
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/build/
|
|
frontend/coverage/
|
|
frontend/.vite/
|
|
frontend/*.tsbuildinfo
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Python / backend artifacts
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.pytest_cache/
|
|
backend/.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.venv/
|
|
venv/
|
|
backend/.venv/
|
|
|
|
# Local databases and generated data
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
pgdata/
|
|
postgres-data/
|
|
mosquitto/data/
|
|
mosquitto/log/
|
|
|
|
# Docker / compose local overrides
|
|
docker-compose.override.yml
|
|
compose.override.yml
|
|
|
|
# Local archives and non-production notes
|
|
archive/
|
|
archive/*
|
|
local-md/
|
|
local-md/*
|