mirror of
https://github.com/Crocmagnon/checkout.git
synced 2024-11-14 12:23:54 +01:00
4 lines
108 B
Bash
Executable file
4 lines
108 B
Bash
Executable file
#!/bin/bash
|
|
set -eux
|
|
python manage.py migrate --noinput
|
|
gunicorn checkout.wsgi -b 0.0.0.0:8000 --log-file -
|