56 lines
1.9 KiB
Text
56 lines
1.9 KiB
Text
# ─── Secrets & Konfiguration ──────────────────────────────────────────
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# ─── TLS Zertifikate ───────────────────────────────────────────────────
|
|
# Eigene Zertifikate niemals einchecken
|
|
nginx/certs/*.pem
|
|
nginx/certs/*.crt
|
|
nginx/certs/*.key
|
|
nginx/certs/*.pfx
|
|
nginx/certs/*.p12
|
|
# README aber behalten
|
|
!nginx/certs/README.md
|
|
|
|
# ─── Python ────────────────────────────────────────────────────────────
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
|
|
# ─── Datenbank ─────────────────────────────────────────────────────────
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# ─── Docker Volumes (falls bind-mounted) ───────────────────────────────
|
|
postgres_data/
|
|
|
|
# ─── IDE / Editor ──────────────────────────────────────────────────────
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ─── Logs ──────────────────────────────────────────────────────────────
|
|
*.log
|
|
logs/
|
|
|
|
# ─── Build artifacts ───────────────────────────────────────────────────
|
|
dist/
|
|
build/
|
|
*.tar.gz
|
|
*.zip
|