Dashboard
Warning
qrobot_dashboard is experimental. Its application factory, configuration,
layout, and callbacks may change between minor releases.
Dash web application for monitoring qUnits on a shared Redis server.
- qrobot_dashboard.app.create_app(config_object_name: str = 'qrobot_dashboard.config.Config') Flask[source]
Create the Flask server and mount the qUnit dashboard on it.
- Parameters:
config_object_name (str) – Import path of the Flask configuration object.
- Returns:
Configured Flask server containing the Dash application.
- Return type:
flask.Flask
Notes
Run the app via
FLASK_APP=qrobot_dashboard.app:create_app flask run.