pflaenz.li/entrypoint.sh

11 lines
248 B
Bash
Raw Normal View History

2023-04-07 10:58:28 +02:00
#!/bin/bash
python manage.py migrate
2023-05-17 12:37:59 +02:00
python manage.py getlocales
2023-05-17 17:50:56 +02:00
python manage.py makemessages -l en -l de
2023-05-17 12:37:59 +02:00
python manage.py compilemessages -f
2023-05-17 16:35:10 +02:00
python manage.py getplzindex
2023-04-07 10:58:28 +02:00
nginx
gunicorn --bind :8000 --workers 4 pflaenzli_django.wsgi:application