diff options
author | Zachary Sloan | 2014-09-22 18:46:07 +0000 |
---|---|---|
committer | Zachary Sloan | 2014-09-22 18:46:07 +0000 |
commit | e437f6235b3c06de31719d52cf506103e969ebce (patch) | |
tree | 3e653dbe5039c7bb893894d808fcf687dbd55553 /wqflask/runserver.py | |
parent | b9ceae1564ea3bfa5648ec2e565eb0e96ea047e1 (diff) | |
download | genenetwork2-e437f6235b3c06de31719d52cf506103e969ebce.tar.gz |
Adding the port as a parameter to runserver; this should just be temporary until
I figure out how to get it to read the port from the config file instead
Using runserver.py instead of secure_server.py because of an error with the latter
that I haven't figured out how to fix yet
Improved the appearance of several of the tables
Diffstat (limited to 'wqflask/runserver.py')
-rwxr-xr-x | wqflask/runserver.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wqflask/runserver.py b/wqflask/runserver.py index 1cf38f8e..8ab88580 100755 --- a/wqflask/runserver.py +++ b/wqflask/runserver.py @@ -28,6 +28,7 @@ import logging_tree logging_tree.printout() app.run(host='0.0.0.0', + port=5002, use_debugger=False, threaded=True, use_reloader=True) |