Repo setup

This commit is contained in:
lvrossem
2023-03-27 15:38:13 +02:00
parent e66e9e5b18
commit 51c27f8bc6
3 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
venv/*
venv
src/__pycache__*

4
requirements.txt Normal file
View File

@@ -0,0 +1,4 @@
fastapi
pydantic
sqlalchemy
uvicorn[standard]

8
src/main.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}