You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
477 B
20 lines
477 B
|
|
|
|
from .server import start_server
|
|
from .serverwait import wait_for_server
|
|
from .ui import start_ui, _start_sandboxed
|
|
|
|
|
|
def start_ui():
|
|
svr = start_server(start_thread=False)
|
|
url = f"http://localhost:{svr.port}"
|
|
# wait_for_server(url)
|
|
# # start_ui(threaded=False)
|
|
# import webview
|
|
# w = webview.create_window('asdf', '../../web/index.html', min_size=(1200, 900), zoomable=True)
|
|
# webview.start(ssl=True)
|
|
|
|
if __name__ == "__main__":
|
|
start_ui()
|
|
|
|
|
|
|