Torma Kristóf
cef1135cab
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
230 B
Bash
10 lines
230 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Apply database migrations
|
|
echo "Apply database migrations"
|
|
python manage.py migrate --noinput
|
|
|
|
# Start server
|
|
echo "Starting server"
|
|
gunicorn -b 0.0.0.0:8080 --workers 4 --threads 4 geogame.wsgi:application
|