NewsBlur/newsblur_web/entrypoint.sh
2021-03-09 12:04:48 -05:00

6 lines
154 B
Bash
Executable file

#!/usr/bin/env sh
if [[ -z "${TEST}" && "${TEST}" = "True" ]]
then echo "starting test env"
else gunicorn --bind :8000 newsblur_web.wsgi:application
fi