feat: base flask x gunicorn server
Python Lint CI / ruff-format-check (push) Successful in 1m21s
Python Lint CI / ruff (push) Successful in 1m21s
Python Lint CI / ty (push) Successful in 1m29s

This commit is contained in:
2026-06-30 17:09:16 +02:00
parent e19a9cfdcc
commit 83c8e4415b
8 changed files with 299 additions and 46 deletions
+5 -2
View File
@@ -4,7 +4,10 @@ version = "0.0.0"
description = ""
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
dependencies = [
"flask>=3.1.3,<4.0.0",
"gunicorn>=26.0.0,<27.0.0",
]
[project.scripts]
tout-doux = "app.__main__:main"
@@ -30,7 +33,7 @@ module-name = "app"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT"]
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT", "S104"]
[tool.ty.src]
include = ["app", "tests"]