aboutsummaryrefslogtreecommitdiff
path: root/wqflask/runserver.py
blob: 4556056d988bafa7702cc6fa049a27380e066785 (plain)
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
from wqflask import app

# Start the webserver with ./bin/genenetwork2
#
# Please note, running with host set externally below combined with debug mode
# is a big security no-no
# Unless you have a firewall setup
#
# Something like /sbin/iptables -A INPUT -p tcp -i eth0 -s ! 71.236.239.43 --dport 5000 -j DROP
# should do the trick
#
# You'll probably have to firewall the main port and the
#
# For more info see: http://www.cyberciti.biz/faq/iptables-block-port/

#import logging
#logging.basicConfig(filename="/tmp/flask_gn_log", level=logging.INFO)
#
#_log = logging.getLogger("search")
#_ch = logging.StreamHandler()
#_log.addHandler(_ch)

import logging
import utility.logger
logger = utility.logger.getLogger(__name__ )

logger.info(app.config)

from utility.tools import WEBSERVER_MODE

werkzeug_logger = logging.getLogger('werkzeug')

if WEBSERVER_MODE == 'DEBUG':
    app.run(host='0.0.0.0',
            port=app.config['SERVER_PORT'],
            debug=True,
            use_debugger=True,
            threaded=False,
            use_reloader=True)
elif WEBSERVER_MODE == 'DEV':
    werkzeug_logger.setLevel(logging.WARNING)
    app.run(host='0.0.0.0',
            port=app.config['SERVER_PORT'],
            debug=False,
            use_debugger=False,
            threaded=False,
            processes=0,
            use_reloader=True)
else: #production mode
    app.run(host='0.0.0.0',
            port=app.config['SERVER_PORT'],
            debug=False,
            use_debugger=False,
            threaded=True,
            processes=8,
            use_reloader=True)