first commit

This commit is contained in:
pie
2026-05-03 16:48:18 +01:00
commit d0dba8183b
10 changed files with 610 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Start FastAPI backend in the background
echo "Starting FastAPI backend..."
uvicorn app.api:app --host 0.0.0.0 --port 8003 &
# Start Streamlit frontend
echo "Starting Streamlit frontend..."
streamlit run app/main.py --server.port 8503 --server.address 0.0.0.0
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?