# 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. # # /sbin/iptables -A INPUT -p tcp -i eth0 -s ! 71.236.239.43 --dport 5003 -j DROP from gn2_main import app from utility.startup_config import app_config from utility.configuration import get_setting, get_setting_int import logging BLUE = '\033[94m' GREEN = '\033[92m' BOLD = '\033[1m' ENDC = '\033[0m' app_config(app) werkzeug_logger = logging.getLogger('werkzeug') if get_setting(app, "WEBSERVER_MODE") == 'DEBUG': app.debug = True app.run(host='0.0.0.0', port=get_setting_int(app, "SERVER_PORT"), debug=True, use_debugger=False, threaded=False, processes=0, use_reloader=True) elif get_setting(app, "WEBSERVER_MODE") == 'DEV': werkzeug_logger.setLevel(logging.WARNING) app.run(host='0.0.0.0', port=get_setting_int(app, "SERVER_PORT"), debug=False, use_debugger=False, threaded=False, processes=0, use_reloader=True) else: # staging/production modes app.run(host='0.0.0.0', port=get_setting_int(app, "SERVER_PORT"), debug=False, use_debugger=False, threaded=True, processes=0, use_reloader=True)