Files
AllMail/api/run.sh
Aditya Pulipaka 70ee32efdd
Some checks failed
Deploy to Server / deploy (push) Failing after 5s
beforeLocal
2026-05-05 00:47:39 +00:00

14 lines
238 B
Bash

#!/bin/bash
echo "Starting Uvicorn..."
uvicorn main:app --host 0.0.0.0 --port 8000 &
echo "Starting Indexer daemon..."
python indexer.py &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?