11 lines
308 B
Bash
Executable File
11 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
# This script starts the FastAPI application using Gunicorn.
|
|
|
|
echo "Starting DocProcessor with Gunicorn..."
|
|
|
|
exec gunicorn -w 1 -k uvicorn.workers.UvicornWorker --forwarded-allow-ips='*' main:app -b 0.0.0.0:8000 &
|
|
echo "Done"
|
|
echo "Starting huey..."
|
|
exec huey_consumer.py main.huey &
|
|
echo "Done"
|