Feat(back): init dockerfiles

This commit is contained in:
2023-06-06 14:41:11 +02:00
parent 7c6d5c41d2
commit ae44aaf59d
5 changed files with 262 additions and 0 deletions

8
backend/src/api/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"}