blob: 81fbd834a9cd1fef73ef81d7be7c19386222f622 [file] [log] [blame]
Oleksii Petrenko24f1f8f2020-06-26 18:09:43 +03001#!/bin/sh
2
3if [ "$DATABASE" = "postgres" ]
4then
5 echo "Waiting for postgres..."
6
7 while ! nc -z $SQL_HOST $SQL_PORT; do
8 sleep 0.1
9 done
10
11 echo "PostgreSQL started"
12fi
13
14python manage.py migrate --noinput
15python manage.py collectstatic --noinput
16uwsgi --http :8000 --module testrail_bot.wsgi