Build Nginx live traffic monitor
This commit is contained in:
parent
2da9b83907
commit
fb66a69bd7
9 changed files with 525 additions and 2 deletions
12
pyproject.toml
Normal file
12
pyproject.toml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
[project]
|
||||
name = "nginx-live-traffic-monitor"
|
||||
version = "0.1.0"
|
||||
description = "Small in-memory live traffic dashboard for an Nginx reverse proxy"
|
||||
requires-python = ">=3.10"
|
||||
dependencies = ["fastapi>=0.115,<1", "uvicorn[standard]>=0.30,<1"]
|
||||
|
||||
[project.optional-dependencies]
|
||||
test = ["pytest>=8,<9"]
|
||||
|
||||
[project.scripts]
|
||||
nginx-traffic-monitor = "app.main:main"
|
||||
Loading…
Reference in a new issue