Deployment-Setup (PostgreSQL+nginx-Installer) + Sprint-0-Fixes aus Subagenten-Reviews
CI / backend-tests (push) Failing after 1s

Installer (deploy/):
- install_server.sh: PostgreSQL+nginx auf Debian 13, idempotente Rolle/DB-Anlage,
  pgcrypto-Extension, Speicher-Tuning für 4GB-VPS, Zugangsdaten in chmod-600-Datei
  statt stdout (postgres-expert/owasp-Review)
- nginx-Template mit Security-Headern + Rate-Limit auf /auth/login
- systemd-Unit-Template mit Sandboxing (NoNewPrivileges/ProtectSystem/PrivateTmp)

Backend-Fixes (fastapi-expert-Review):
- get_db: einheitliche commit/rollback-Konvention statt Endpunkt-Copy-Paste
- Test-Fixtures auf SQLAlchemy-2.0-Savepoint-Pattern umgestellt (join_transaction_mode),
  da get_db jetzt selbst committet
- Lifespan-Handler: Startup-Guard gegen JWT-Secret-Platzhalter, engine.dispose() beim Shutdown
- JWT-Payload ohne ungenutztes roles-Claim (Rollen kommen immer frisch aus der DB)

Zusätzlich: Subagenten-Definitionen (~/.claude/agents/) auf lauffähiges Modell fixiert.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01L85hmKbvX7Cqkq47KnQhFt
This commit is contained in:
2026-09-03 23:00:46 +02:00
co-authored by Claude Sonnet 5
parent 48b6d6a5be
commit 446e4f912d
10 changed files with 487 additions and 8 deletions
+19 -1
View File
@@ -1,6 +1,24 @@
from contextlib import asynccontextmanager
from fastapi import FastAPI
from app.api.v1.api import api_router
from app.core.app_settings import settings
from app.db.session import engine
app = FastAPI(title="MABEA", version="0.1.0")
_PLACEHOLDER_JWT_SECRET = "change-me-to-a-long-random-value"
@asynccontextmanager
async def lifespan(app: FastAPI):
if not settings.jwt_secret_key or settings.jwt_secret_key == _PLACEHOLDER_JWT_SECRET:
raise RuntimeError(
"JWT_SECRET_KEY ist leer oder noch der Platzhalter aus example.env "
"in .env auf dem Zielsystem einen echten zufälligen Wert setzen."
)
yield
await engine.dispose()
app = FastAPI(title="MABEA", version="0.1.0", lifespan=lifespan)
app.include_router(api_router, prefix="/api/v1")