aboutsummaryrefslogtreecommitdiff
path: root/stackbin.bin
diff options
context:
space:
mode:
Diffstat (limited to 'stackbin.bin')
-rwxr-xr-xstackbin.bin9
1 files changed, 9 insertions, 0 deletions
diff --git a/stackbin.bin b/stackbin.bin
new file mode 100755
index 0000000..d3b2da3
--- /dev/null
+++ b/stackbin.bin
@@ -0,0 +1,9 @@
+#!/bin/sh
+# Reference: fuss.bin from fuss project
+# Startdate: 2022-02-13 19:25
+# Goal: see if uwsgi reacts to the @timer directives in the pastebin.py file, because flask run doesn't.
+thisscript="$( readlink -f "${0}" )"
+COMMAND=""
+grep -qiE 'ID=.*(rhel|centos|fedora)' /etc/os-release && COMMAND="${COMMAND} uwsgi" || \
+ COMMAND="${COMMAND} uwsgi_python39"
+${COMMAND} --ini "$( dirname "${thisscript}" )/$( basename "${thisscript}" | sed -r -e 's/\.bin$//;' ).wsgi.ini"
bgstack15