diff options
author | zsloan | 2018-02-28 16:45:31 +0000 |
---|---|---|
committer | zsloan | 2018-02-28 16:45:31 +0000 |
commit | 1e0a0739483ca192c50ec953850a02130b76df72 (patch) | |
tree | 300ab3b58d3d6a25fe1e696f9ee9c15de78f121e /wqflask/runserver.py | |
parent | 59a6b89f1d14ac542a80ed8c1901c1aae0ba7103 (diff) | |
parent | f44a18ccd4c45ab7fd2179c9000d1bf836e3f654 (diff) | |
download | genenetwork2-1e0a0739483ca192c50ec953850a02130b76df72.tar.gz |
Merge branch 'testing' of https://github.com/genenetwork/genenetwork2
Diffstat (limited to 'wqflask/runserver.py')
-rw-r--r-- | wqflask/runserver.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/wqflask/runserver.py b/wqflask/runserver.py index 50805643..a0c76e51 100644 --- a/wqflask/runserver.py +++ b/wqflask/runserver.py @@ -1,5 +1,7 @@ # Starts the webserver with the ./bin/genenetwork2 command # +# This uses Werkzeug WSGI, see ./run_gunicorn.py for the alternative +# # Please note, running with host set externally below combined with # debug mode is a security risk unless you have a firewall setup, e.g. # @@ -22,11 +24,19 @@ ENDC = '\033[0m' import os app.config['SECRET_KEY'] = os.urandom(24) -from utility.tools import WEBSERVER_MODE,get_setting_int +from utility.tools import WEBSERVER_MODE,get_setting_int,get_setting,get_setting_bool port = get_setting_int("SERVER_PORT") -logger.info("GN2 is running. Visit %shttp://localhost:%s/%s" % (BLUE,port,ENDC)) +print("GN2 API server URL is ["+BLUE+get_setting("GN_SERVER_URL")+ENDC+"]") + +if get_setting_bool("USE_GN_SERVER"): + import requests + page = requests.get(get_setting("GN_SERVER_URL")) + if page.status_code != 200: + raise Exception("API server not found!") + +print("GN2 is running. Visit %s[http://localhost:%s/%s](%s)" % (BLUE,str(port),ENDC,get_setting("WEBSERVER_URL"))) werkzeug_logger = logging.getLogger('werkzeug') |