mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-05-14 07:42:15 +00:00
9 lines
160 B
Bash
Executable file
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}
|