23 lines
583 B
Markdown
23 lines
583 B
Markdown
# BSN-Livesystem
|
|
|
|
Community-Plattform für Brettspiel-News.de — das Live-System auf dem neuen Server.
|
|
|
|
## Struktur
|
|
|
|
```
|
|
src/
|
|
├── app.py # Flask-App-Factory
|
|
├── routes/ # Webhook-Endpunkte
|
|
├── models/ # Pydantic-Datenmodelle
|
|
├── queue/ # Redis-Queue-System
|
|
└── utils/ # Validatoren
|
|
tests/ # pytest-Tests
|
|
docs/ # Pläne & Aufgaben
|
|
```
|
|
|
|
## Qualität
|
|
|
|
- Python 3.13+, Pydantic v2, Flask
|
|
- Ruff + mypy + pytest (CI-Gate)
|
|
- Jeder Push → Gitea Actions-Check
|