Initial FastAPI admin auth scaffold

This commit is contained in:
2026-06-05 17:10:30 +08:00
commit 5635da9ea5
65 changed files with 1407 additions and 0 deletions

14
pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[project]
name = "py-server"
version = "0.1.0"
description = "Async API server scaffold inspired by the Hyperf app layering."
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.136.0",
"pydantic-settings>=2.14.0",
"uvicorn[standard]>=0.49.0",
]
[tool.pyright]
venvPath = "."
venv = ".venv"