aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorPjotr Prins2018-09-05 09:49:09 +0000
committerPjotr Prins2018-09-05 09:49:09 +0000
commit33e2e09d00881de9b07274bc52b58587e5135cab (patch)
tree86492a323eece8a67cc85156a72505199b444886 /wqflask
parentb3c2253a99ff9495a0132f466df825340ddf367c (diff)
downloadgenenetwork2-33e2e09d00881de9b07274bc52b58587e5135cab.tar.gz
ELASTICSEARCH settings and fix runserver.py to run without gunicorn
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/runserver.py4
-rw-r--r--wqflask/utility/tools.py1
2 files changed, 5 insertions, 0 deletions
diff --git a/wqflask/runserver.py b/wqflask/runserver.py
index 5f41d04d..c0ac980a 100644
--- a/wqflask/runserver.py
+++ b/wqflask/runserver.py
@@ -9,6 +9,7 @@
from wqflask import app
+
import logging
import utility.logger
logger = utility.logger.getLogger(__name__ )
@@ -27,6 +28,9 @@ app_config()
werkzeug_logger = logging.getLogger('werkzeug')
+from utility.tools import WEBSERVER_MODE, SERVER_PORT
+port = int(SERVER_PORT)
+
if WEBSERVER_MODE == 'DEBUG':
app.run(host='0.0.0.0',
port=port,
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py
index ea216a35..f12b0d76 100644
--- a/wqflask/utility/tools.py
+++ b/wqflask/utility/tools.py
@@ -233,6 +233,7 @@ def show_settings():
# Cached values
GN_VERSION = get_setting('GN_VERSION')
HOME = get_setting('HOME')
+SERVER_PORT = get_setting('SERVER_PORT')
WEBSERVER_MODE = get_setting('WEBSERVER_MODE')
GN_SERVER_URL = get_setting('GN_SERVER_URL')
SQL_URI = get_setting('SQL_URI')