mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 11:22:24 +02:00
14 lines
279 B
Bash
Executable file
14 lines
279 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
echo "Migrate database..."
|
|
python manage.py migrate --settings local_settings
|
|
|
|
echo "Start server..."
|
|
|
|
granian la_chariotte.wsgi:application \
|
|
--host 127.0.0.1 \
|
|
--port 8000 \
|
|
--interface wsgi \
|
|
--no-ws \
|
|
--loop uvloop
|