#!/bin/bash

# runs the API server in production mode
# using gunicorn to manage 4 uvicorn workers
# used by Azure on deploy command

gunicorn -w 4 -k uvicorn.workers.UvicornWorker main:app