standard fastapi

This commit is contained in:
2026-03-06 10:04:00 +01:00
parent ac91dfa34e
commit 5d563f8c9d
7 changed files with 10 additions and 1 deletions

View File

@@ -6,3 +6,5 @@ Requirements:
SQLAlchemy
psycopg2-binary
python-dotenv
Starting command: uvicorn app.main:app --reload.

Binary file not shown.

0
src/app/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

7
src/app/main.py Normal file
View File

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