Initial commit

This commit is contained in:
Dom
2026-03-05 01:20:14 +01:00
commit 2163e574c1
184 changed files with 354881 additions and 0 deletions

9
start_api_server.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Script pour démarrer le serveur API TIM
# Activer l'environnement virtuel
source .venv/bin/activate
# Démarrer le serveur sur le port 8001
echo "🚀 Démarrage du serveur API TIM sur http://localhost:8001"
python -m uvicorn pipeline_mco_pmsi.api.tim_api:app --host 0.0.0.0 --port 8001 --reload