harden telegram webapp production readiness

This commit is contained in:
VPN SaaS Dev
2026-05-12 19:14:21 +09:00
parent e75697f83e
commit 2ba2e88432
27 changed files with 931 additions and 155 deletions

View File

@@ -26,6 +26,9 @@ include = ["app*", "bot*"]
[project.optional-dependencies]
dev = [
"aiosqlite>=0.20,<1.0",
"pytest>=8.0,<9.0",
"pytest-asyncio>=0.23,<1.0",
"ruff>=0.4,<1.0",
]
@@ -35,3 +38,7 @@ target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["B008", "E501", "UP042"]
[tool.pytest.ini_options]
asyncio_mode = "auto"