Initial commit
This commit is contained in:
17
hsbg_ai/start_backend.sh
Normal file
17
hsbg_ai/start_backend.sh
Normal 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
|
||||
Reference in New Issue
Block a user