pflaenz.li/entrypoint.sh

10 lines
213 B
Bash
Raw Normal View History

2023-04-07 10:58:28 +02:00
#!/bin/bash
python manage.py migrate
2023-07-09 11:03:52 +02:00
python manage.py loco
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-04-07 10:58:28 +02:00
nginx
gunicorn --bind :8000 --workers 4 pflaenzli_django.wsgi:application