mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-15 04:43:56 +01:00
5 lines
108 B
Bash
5 lines
108 B
Bash
|
#!/bin/bash
|
||
|
set -eux
|
||
|
python manage.py migrate --noinput
|
||
|
gunicorn checkout.wsgi -b 0.0.0.0:8000 --log-file -
|