2023-10-06 18:52:17 +00:00
|
|
|
from .server.app import app
|
|
|
|
from .server.website import Website
|
|
|
|
from .server.backend import Backend_Api
|
|
|
|
|
|
|
|
def run_gui(host: str = '0.0.0.0', port: int = 80, debug: bool = False) -> None:
|
|
|
|
config = {
|
|
|
|
'host' : host,
|
|
|
|
'port' : port,
|
|
|
|
'debug': debug
|
|
|
|
}
|
|
|
|
|
|
|
|
site = Website(app)
|
|
|
|
for route in site.routes:
|
|
|
|
app.add_url_rule(
|
|
|
|
route,
|
|
|
|
view_func = site.routes[route]['function'],
|
|
|
|
methods = site.routes[route]['methods'],
|
|
|
|
)
|
2023-10-09 22:47:58 +00:00
|
|
|
|
2023-10-06 18:52:17 +00:00
|
|
|
backend_api = Backend_Api(app)
|
|
|
|
for route in backend_api.routes:
|
|
|
|
app.add_url_rule(
|
|
|
|
route,
|
|
|
|
view_func = backend_api.routes[route]['function'],
|
|
|
|
methods = backend_api.routes[route]['methods'],
|
|
|
|
)
|
|
|
|
|
|
|
|
print(f"Running on port {config['port']}")
|
|
|
|
app.run(**config)
|
2023-10-12 01:35:11 +00:00
|
|
|
print(f"Closing port {config['port']}")
|