mirror of
https://github.com/maciej3031/comixify.git
synced 2026-03-11 08:54:35 +00:00
17 lines
265 B
Bash
17 lines
265 B
Bash
#!/bin/sh
|
|
|
|
start (){
|
|
gunicorn --bind :8008 settings.wsgi:application --timeout 300 --workers 2
|
|
}
|
|
|
|
migrate (){
|
|
python3.6 manage.py migrate --noinput
|
|
}
|
|
|
|
collectstatic (){
|
|
python3.6 manage.py collectstatic --clear --no-input
|
|
}
|
|
|
|
migrate
|
|
collectstatic
|
|
start
|