mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-28 18:26:05 +00:00
10 lines
160 B
Bash
10 lines
160 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
APP_NAME='website.wsgi:application'
|
||
|
WORKERS=3
|
||
|
BIND=':8000'
|
||
|
|
||
|
/usr/bin/poetry run gunicorn ${APP_NAME} \
|
||
|
--workers ${WORKERS} \
|
||
|
--bind ${BIND}
|