project scaffolding + start on frontend

This commit is contained in:
2022-05-21 16:37:48 +02:00
parent 59ccc38ffd
commit 6addb48243
34 changed files with 2558 additions and 18 deletions

19
pyproject.toml Normal file
View File

@ -0,0 +1,19 @@
[tool.poetry]
name = "traefik-manager"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.77.1"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
strawberry-graphql = "^0.111.2"
loguru = "^0.6.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"