chore: update .gitignore to exclude secrets and runtime data

This commit is contained in:
root
2026-08-21 18:26:20 +02:00
parent 44f9ab4020
commit 8f1cc89050

35
.gitignore vendored
View File

@@ -1,10 +1,27 @@
.paperclip/
node_modules/
.env
.env.*
# Secrets and local runtime config
*.env
!.env.example
.DS_Store
__pycache__/
*.pyc
dist/
.venv/
kino/kino-projekt.env
token-monitor/token-monitor.env
# Runtime data
**/data/
**/export/
*.sqlite
*.sqlite3
*.sqlite3-wal
*.sqlite3-shm
*.db
*.db-wal
*.db-shm
# Credentials and browser/runtime caches
**/.ssh/
**/known_hosts
**/.cache/
**/.venv/
**/venv/
**/__pycache__/
**/*.pyc
**/*.egg-info/
**/*.pytest_cache/