Initial commit

This commit is contained in:
2026-03-31 13:10:46 +02:00
commit f60d9628e0
52 changed files with 3383 additions and 0 deletions

17
hsbg_ai/start_backend.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Lance le backend HSBG AI
cd "$(dirname "$0")"
source .venv/bin/activate
echo "╔══════════════════════════════════════╗"
echo "║ HSBG AI - Backend (FastAPI) ║"
echo "║ http://localhost:8000 ║"
echo "║ API Docs: /docs ║"
echo "╚══════════════════════════════════════╝"
echo ""
python -m uvicorn backend.main:app \
--host 0.0.0.0 \
--port 8000 \
--reload \
--log-level info