Files
kjv_api/kjv-api-test.sh
T
2023-01-13 14:35:28 -08:00

10 lines
274 B
Bash
Executable File

#!/bin/sh
# run from current directory only
FILE=app.py
if test -f "$FILE"; then
uwsgi_python3 --http-socket 0.0.0.0:1612 --wsgi-file app.py --callable app
else
cd /opt/kjv-api
uwsgi_python3 --http-socket 0.0.0.0:1612 --wsgi-file /opt/kjv-api/app.py --callable app
fi