AceNow / start.sh
GitHub Action
Clean deployment - 0 binaries
39b5ef2
raw
history blame contribute delete
358 Bytes
#!/bin/bash
# Start services in background
python services/auth-service/app.py &
python services/file-parser-service/app.py &
python services/ai-service/app.py &
python services/frontend-service/app.py &
# Start API Gateway (main entry point) in foreground
# Use port 7860 for Hugging Face compatibility
export PORT=7860
python services/api-gateway/app.py