use raw controller

This commit is contained in:
Adam Wilson
2025-05-19 20:25:24 -06:00
parent 4b3dca76be
commit 8def474734
+1 -1
View File
@@ -2,7 +2,7 @@
set -e # Exit on error
echo "Starting API server with logging..."
nohup python -m src.api.controller > logs/api.log 2>&1 &
nohup python -m src.api.server > logs/api.log 2>&1 &
API_PID=$!
echo "API server started with PID: $API_PID"