server
Defines the Flask server and Dash app instance for the GONet Dashboard.
This module initializes:
a
flask.Flask
server namedGONet_dashboard
,a Dash app instance that uses this server and loads assets from the local
assets/
folder,and the dashboard layout, which is now assigned here at startup.
The app object is fully initialized and can be used as a WSGI entry point for deployment tools such as Gunicorn.
These objects are imported by the rest of the dashboard system, including the main entry point
(GONet_Wizard.GONet_dashboard.src.app
) and the callback definitions in callbacks
.