From 065c831cdecefa517a0208ae765a047f28aef896 Mon Sep 17 00:00:00 2001 From: Tobias Quadfasel Date: Thu, 29 Aug 2024 16:28:21 +0200 Subject: [PATCH] feat(base-app): Add base dash app file This commit adds a file that contains a standard 'Hello World' example of a plotly dash app. --- app/app.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/app.py diff --git a/app/app.py b/app/app.py new file mode 100644 index 0000000..b758c56 --- /dev/null +++ b/app/app.py @@ -0,0 +1,8 @@ +from dash import Dash, html + +app = Dash() + +app.layout = [html.Div(children="Hello World")] + +if __name__ == "__main__": + app.run(debug=True)