Clone and get running.
# whether the app is in debug mode or not
# debug mode will output a lot more logs
IS_DEBUG
# number of gunicorn worker to handle multiple requests
GUNICORN_NUM_WORKERS
# number of gunicorn threads
GUNICORN_NUM_THREADS
# timeout in seconds of gunicorn to handle a single request
GUNICORN_TIMEOUTpip install -r requirements.txtTo run the API in dev environment, run the following command
make devSet up environment variables needed before running the gunicorn server. Then, run the following command:
make run