Fixed line placement of gunicorn

This commit is contained in:
Maxim 2020-01-12 13:27:05 -06:00 committed by GitHub
parent e58fd2ebe1
commit 28ea42b48f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@
function main() {
source "../bin/activate"
# Note can replace 127.0.0.1 with 0.0.0.0 to make it 'network/internet' accessable...
gunicorn wsgi:app -b 127.0.0.1:4040 # <module>:<app> IE <file>:<flask app variable>
}
gunicorn wsgi:app -b 127.0.0.1:4040 # <module>:<app> IE <file>:<flask app variable>
main $@;