WebsiteArchive/run.sh
2023-06-19 19:08:23 +00:00

9 lines
160 B
Bash
Executable file

#!/bin/sh
APP_NAME='website.wsgi:application'
WORKERS=3
BIND=':8000'
/usr/bin/poetry run gunicorn ${APP_NAME} \
--workers ${WORKERS} \
--bind ${BIND}