feat(base-app): Add gunicorn to dependencies

This commit is contained in:
Tobias Quadfasel
2024-08-29 17:34:04 +02:00
parent 065c831cde
commit 25aeb62951
3 changed files with 25 additions and 1 deletions

View File

@@ -4,5 +4,7 @@ app = Dash()
app.layout = [html.Div(children="Hello World")]
server = app.server
if __name__ == "__main__":
app.run(debug=True)