mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 06:44:21 +00:00
6 lines
273 B
Bash
6 lines
273 B
Bash
#!/bin/bash
|
|
|
|
poetry run python -O ./manage.py migrate --no-input
|
|
poetry run python -O ./manage.py collectstatic --no-input
|
|
poetry run python -O ./manage.py initsuperuser
|
|
poetry run python -O -m gunicorn sophon.wsgi:application --workers=4 --bind=0.0.0.0:8000 --timeout 180
|