This commit is contained in:
Michał Gdula 2023-06-19 19:08:23 +00:00
parent 43665fb930
commit 384aa2b152
173 changed files with 10 additions and 30637 deletions

9
run.sh Executable file
View file

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