9 lines
212 B
Bash
9 lines
212 B
Bash
#!/bin/bash
|
|
python manage.py migrate
|
|
python manage.py getlocales
|
|
python manage.py makemessages -all
|
|
python manage.py compilemessages -f
|
|
|
|
nginx
|
|
|
|
gunicorn --bind :8000 --workers 4 pflaenzli_django.wsgi:application
|