Add backend, Implement Token validation

This commit is contained in:
2022-01-02 00:51:10 +01:00
parent fe677d404b
commit 445587e596
10 changed files with 685 additions and 15 deletions

17
backend/Pipfile Normal file
View File

@@ -0,0 +1,17 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = "*"
uvicorn = "==0.15"
python-dotenv = "*"
python-jose = {extras = ["cryptography"], version = "*"}
tinydb = "*"
[dev-packages]
httpx = "*"
[requires]
python_version = "3.9"