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)

23
poetry.lock generated
View File

@@ -401,6 +401,27 @@ python-dateutil = ">=2.8.1"
[package.extras]
dev = ["flake8", "markdown", "twine", "wheel"]
[[package]]
name = "gunicorn"
version = "23.0.0"
description = "WSGI HTTP Server for UNIX"
optional = false
python-versions = ">=3.7"
files = [
{file = "gunicorn-23.0.0-py3-none-any.whl", hash = "sha256:ec400d38950de4dfd418cff8328b2c8faed0edb0d517d3394e457c317908ca4d"},
{file = "gunicorn-23.0.0.tar.gz", hash = "sha256:f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec"},
]
[package.dependencies]
packaging = "*"
[package.extras]
eventlet = ["eventlet (>=0.24.1,!=0.36.0)"]
gevent = ["gevent (>=1.4.0)"]
setproctitle = ["setproctitle"]
testing = ["coverage", "eventlet", "gevent", "pytest", "pytest-cov"]
tornado = ["tornado (>=0.2)"]
[[package]]
name = "identify"
version = "2.6.0"
@@ -1577,4 +1598,4 @@ type = ["pytest-mypy"]
[metadata]
lock-version = "2.0"
python-versions = "^3.10"
content-hash = "c0d0425486e160e85f7ee57c17e73f63d433313ccf6c980197258518427ae125"
content-hash = "1ace87aaeab8e9964d3f2e843eb5a0d15c1506bb0d1871dc41a9a38f5ed3a352"

View File

@@ -31,6 +31,7 @@ wrap-summaries = 100
python = "^3.10"
plotly = "^5.23.0"
dash = "^2.17.1"
gunicorn = "^23.0.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.0"