diff --git a/db.py b/db.py index 7c86df9..c039c32 100644 --- a/db.py +++ b/db.py @@ -2,7 +2,7 @@ import os import json if not os.path.exists('config.json'): - db = {} + db = {"our_port": 0000, "ports": [], "domain": "127.0.0.1"} js = json.dumps(db, indent=2) with open("config.json", "w") as outfile: outfile.write(js) diff --git a/interface.py b/interface.py index a180e92..1abb7c9 100644 --- a/interface.py +++ b/interface.py @@ -38,14 +38,16 @@ def update_servers(n): Input('interval-component', 'n_intervals'), Input('search', 'value')) def update_sites(n, s_val): + # Домен по умолчанию + domain = read()['domain'] # Если есть элемент в поиске if s_val: - return html.Div([ dcc.Link(children=i, href=f'http://0.0.0.0:8000/{s_val}', + return html.Div([ dcc.Link(children=i, href=f'http://{domain}:8000/{s_val}', target='_blank') ], className='sites_elem') res = [] for i in next(walk('cached/'), (None, None, []))[1]: - res.append(html.Div([ dcc.Link(children=i, href=f'http://0.0.0.0:8000/{i}', + res.append(html.Div([ dcc.Link(children=i, href=f'http://{domain}:8000/{i}', target='_blank') ], className='sites_elem')) return res