First Commit with complete Setup coded by Claude 4.7 Opus

This commit is contained in:
Tronax 2026-05-13 19:05:40 +02:00
commit bf1d37de77
19 changed files with 4544 additions and 0 deletions

56
.gitignore vendored Normal file
View file

@ -0,0 +1,56 @@
# ─── 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