process-aware-ai / start.sh
borndeveloper's picture
Deploy Process Aware AI Dashboard without binaries
b4a2e7f
Raw
History Blame Contribute Delete
243 Bytes
#!/bin/bash
# Start backend in background on port 8000
cd /app/backend && uvicorn app.main:app --host 0.0.0.0 --port 8000 &
# Wait briefly for backend to start
sleep 3
# Start frontend on port 7860
cd /app/frontend && npm run start -- -p 7860