Fix(Docker): Seperate DEV and PROD

- Restructured the project
This commit is contained in:
2023-10-10 14:33:11 -04:00
parent 975efc5ee9
commit 782fa386d5
10 changed files with 70 additions and 1 deletions

View File

View File

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