NewsBlur/newsblur_web/entrypoint.sh

7 lines
184 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2021-03-09 12:04:48 -05:00
if [[ -z "${TEST}" && "${TEST}" = "True" ]]
then echo "starting test env"
else python3 manage.py check_db; gunicorn --bind :8000 newsblur_web.wsgi:application
2021-03-09 12:04:48 -05:00
fi