add server: FastAPI + Docker

Python 3.11 + FastAPI con tre endpoint (/health, /auth/test, /recipes/generate).
Autenticazione via header X-App-Password, validazione input Pydantic,
chiamata in streaming a NVIDIA NIM (nemotron-3-ultra-550b-a55b) con thinking.
Dockerizzato con docker-compose; configurazione tramite .env.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 00:08:07 +02:00
parent d5205ff8b6
commit 3d330655a6
10 changed files with 238 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
services:
server:
build: .
ports:
- "8000:8000"
env_file:
- .env
restart: unless-stopped