Initial commit from template

This commit is contained in:
Idris Abdurrahman 2025-03-20 12:49:05 +01:00
commit 37ed2d4bc6
15 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__\n*.pyc\n*.db\nvenv/\n

0
app/__init__.py Normal file
View File

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

0
app/api/core/__init__.py Normal file
View File

View File

View File

0
app/api/db/__init__.py Normal file
View File

View File

0
app/api/v1/__init__.py Normal file
View File

View File

View File

View File

View File

7
main.py Normal file
View File

@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI(title="Generated Backend")
@app.get("/")
def read_root():
return {"message": "Welcome to the generated backend"}

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
fastapi
uvicorn
sqlalchemy
pydantic