1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Starts the webserver with the ./bin/genenetwork2 command
#
# This uses Werkzeug WSGI, see 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 wqflask import app
import logging
import utility.logger
logger = utility.logger.getLogger(__name__ )
import signal
signal.signal(signal.SIGPIPE, signal.SIG_DFL)
BLUE = '\033[94m'
GREEN = '\033[92m'
BOLD = '\033[1m'
ENDC = '\033[0m'
import os
app.config['SECRET_KEY'] = os.urandom(24)
from utility.tools import WEBSERVER_MODE,get_setting_int,get_setting,get_setting_bool
port = get_setting_int("SERVER_PORT")
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')
if WEBSERVER_MODE == 'DEBUG':
app.run(host='0.0.0.0',
port=port,
debug=True,
use_debugger=False,
threaded=False,
processes=0,
use_reloader=True)
elif WEBSERVER_MODE == 'DEV':
werkzeug_logger.setLevel(logging.WARNING)
app.run(host='0.0.0.0',
port=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=port,
debug=False,
use_debugger=False,
threaded=True,
processes=0,
use_reloader=True)
|