aboutsummaryrefslogtreecommitdiff
path: root/gn2/utility/startup_config.py
blob: 4f9c392a961e3d2a3e61f79afc6048de7d1db30f (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
from gn2.wqflask import app

from gn2.utility.tools import WEBSERVER_MODE
from gn2.utility.tools import show_settings
from gn2.utility.tools import get_setting_int
from gn2.utility.tools import get_setting
from gn2.utility.tools import get_setting_bool


BLUE = '\033[94m'
GREEN = '\033[92m'
BOLD = '\033[1m'
ENDC = '\033[0m'


def app_config():
    app.config['SESSION_TYPE'] = app.config.get('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 in ["DEV", "DEBUG"]:
        app.config['TEMPLATES_AUTO_RELOAD'] = True
        if mode == "DEBUG":
            app.debug = True

    print("==========================================")
    show_settings()

    port = get_setting_int("SERVER_PORT")

    if get_setting_bool("USE_GN_SERVER"):
        print(f"GN2 API server URL is [{BLUE}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!")
    print(f"GN2 is running. Visit {BLUE}"
          f"[http://localhost:{str(port)}/{ENDC}]"
          f"({get_setting('WEBSERVER_URL')})")