2019-11-01 22:54:25 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# set -o xtrace ## To debug scripts
|
|
|
|
# set -o errexit ## To exit on error
|
|
|
|
# set -o errunset ## To exit if a variable is referenced but not set
|
|
|
|
|
|
|
|
|
|
|
|
function main() {
|
2020-02-24 05:39:15 +00:00
|
|
|
source "../venv/Scripts/activate"
|
2019-11-01 22:54:25 +00:00
|
|
|
# Note can replace 127.0.0.1 with 0.0.0.0 to make it 'network/internet' accessable...
|
2020-02-24 05:39:15 +00:00
|
|
|
waitress-serve --listen=127.0.0.1:8080 wsgi:app # <module>:<app> IE <file>:<flask app variable>
|
2019-11-01 22:54:25 +00:00
|
|
|
}
|
|
|
|
main $@;
|