first push

This commit is contained in:
Chevallier
2026-06-12 18:16:58 +02:00
commit a7d8914e25
53 changed files with 1655 additions and 0 deletions

7
backend/start.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
echo "Démarrage du Backend FastAPI sur le port 8000..."
uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload &
echo "Démarrage de Chainlit sur le port 8001..."
chainlit run chainlit_app.py --host 0.0.0.0 --port 8001