justuser 4 months ago
parent 29ce4a724b
commit ccb88adcb4

@ -2,7 +2,7 @@ import os
import json import json
if not os.path.exists('config.json'): if not os.path.exists('config.json'):
db = {"our_port": 0000, "ports": [], "domain": "127.0.0.1"} db = {"our_port": 0000, "ports": [], "domain": "http://127.0.0.1:8000"}
js = json.dumps(db, indent=2) js = json.dumps(db, indent=2)
with open("config.json", "w") as outfile: with open("config.json", "w") as outfile:
outfile.write(js) outfile.write(js)

@ -42,12 +42,12 @@ def update_sites(n, s_val):
domain = read()['domain'] domain = read()['domain']
# Если есть элемент в поиске # Если есть элемент в поиске
if s_val: if s_val:
return html.Div([ dcc.Link(children=i, href=f'http://{domain}:8000/{s_val}', return html.Div([ dcc.Link(children=i, href=f'{domain}/{s_val}',
target='_blank') ], className='sites_elem') target='_blank') ], className='sites_elem')
res = [] res = []
for i in next(walk('cached/'), (None, None, []))[1]: for i in next(walk('cached/'), (None, None, []))[1]:
res.append(html.Div([ dcc.Link(children=i, href=f'http://{domain}:8000/{i}', res.append(html.Div([ dcc.Link(children=i, href=f'{domain}/{i}',
target='_blank') ], className='sites_elem')) target='_blank') ], className='sites_elem'))
return res return res

Loading…
Cancel
Save