This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/docker/run.sh

7 lines
209 B
Bash
Raw Normal View History

2020-08-17 08:23:00 +02:00
#!/bin/sh
2020-12-26 17:40:25 +01:00
set -euxo pipefail
yes yes | python manage.py migrate
python manage.py collectstatic --noinput --clear
python manage.py assets build --manifest django
gunicorn blog.wsgi -b 0.0.0.0:8000 --log-file -