mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
6 lines
204 B
Bash
Executable file
6 lines
204 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ -z "${TEST}" && "${TEST}" = "True" ]]
|
|
then echo " ---> Starting test env"
|
|
else python3 manage.py check_db; gunicorn -c config/gunicorn_conf.py newsblur_web.wsgi:application
|
|
fi
|