mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 19:32:26 +02:00
8 lines
149 B
Bash
Executable file
8 lines
149 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
echo "Migrate database..."
|
|
python manage.py migrate
|
|
|
|
echo "Start uwsgi..."
|
|
exec uwsgi --ini docker/uwsgi.ini
|