Persistant search bar. Multiple definitions. Trailing commas handled. Static values cached. argv debug mode. Wildcard searching.

This commit is contained in:
2023-02-09 01:25:00 -08:00
parent b95199aa73
commit 233ab58f24
4 changed files with 96 additions and 63 deletions
+3 -2
View File
@@ -2,8 +2,9 @@
# 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
uwsgi_python3 --http-socket 0.0.0.0:1612 --wsgi-file app.py --callable app --pyargv "-vvv"
else
cd /opt/kjv-api
uwsgi_python3 --http-socket 0.0.0.0:1612 --wsgi-file /opt/kjv-api/app.py --callable app
echo "WARNING: RUNNING FROM /opt/kjv-api"
uwsgi_python3 --http-socket 0.0.0.0:1612 --wsgi-file /opt/kjv-api/app.py --callable app --pyargv "-vvv"
fi