mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
6 lines
154 B
Bash
Executable file
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
|