diff options
author | Pjotr Prins | 2018-03-20 11:02:25 +0000 |
---|---|---|
committer | Pjotr Prins | 2018-03-20 11:02:25 +0000 |
commit | afd8d38c19be78b7e962f4edea0972ac3f48c25d (patch) | |
tree | a1e87ced6efc40eebcf2e22ac9dd3b9ccfb0204a /wqflask/utility/startup_config.py | |
parent | ab369995d4a16de5d20123192279e32658f870a0 (diff) | |
download | genenetwork2-afd8d38c19be78b7e962f4edea0972ac3f48c25d.tar.gz |
Refactor startup config for gunicorn and werkzeug
Diffstat (limited to 'wqflask/utility/startup_config.py')
-rw-r--r-- | wqflask/utility/startup_config.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/wqflask/utility/startup_config.py b/wqflask/utility/startup_config.py new file mode 100644 index 00000000..02e8e56c --- /dev/null +++ b/wqflask/utility/startup_config.py @@ -0,0 +1,39 @@ + +from wqflask import app +from utility.tools import WEBSERVER_MODE, show_settings, get_setting_int, get_setting, get_setting_bool + +import utility.logger +logger = utility.logger.getLogger(__name__ ) + +BLUE = '\033[94m' +GREEN = '\033[92m' +BOLD = '\033[1m' +ENDC = '\033[0m' + +def app_config(): + app.config['SESSION_TYPE'] = 'filesystem' + if not app.config.get('SECRET_KEY'): + import os + app.config['SECRET_KEY'] = str(os.urandom(24)) + + mode = WEBSERVER_MODE + if mode == "DEV" or mode == "DEBUG": + app.config['TEMPLATES_AUTO_RELOAD'] = True + if mode == "DEBUG": + app.config['EXPLAIN_TEMPLATE_LOADING'] = True + print("==========================================") + show_settings() + + port = get_setting_int("SERVER_PORT") + + if get_setting_bool("USE_GN_SERVER"): + print("GN2 API server URL is ["+BLUE+get_setting("GN_SERVER_URL")+ENDC+"]") + import requests + page = requests.get(get_setting("GN_SERVER_URL")) + if page.status_code != 200: + raise Exception("API server not found!") + + import utility.elasticsearch_tools as es + es.test_elasticsearch_connection() + + print("GN2 is running. Visit %s[http://localhost:%s/%s](%s)" % (BLUE,str(port),ENDC,get_setting("WEBSERVER_URL"))) |