Initial commit from template
This commit is contained in:
commit
26d01d18c1
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
__pycache__\n*.pyc\n*.db\nvenv/\n
|
0
app/__init__.py
Normal file
0
app/__init__.py
Normal file
0
app/api/__init__.py
Normal file
0
app/api/__init__.py
Normal file
0
app/api/core/__init__.py
Normal file
0
app/api/core/__init__.py
Normal file
0
app/api/core/dependencies/__init__.py
Normal file
0
app/api/core/dependencies/__init__.py
Normal file
0
app/api/core/middleware/__init__.py
Normal file
0
app/api/core/middleware/__init__.py
Normal file
0
app/api/db/__init__.py
Normal file
0
app/api/db/__init__.py
Normal file
0
app/api/utils/__init__.py
Normal file
0
app/api/utils/__init__.py
Normal file
0
app/api/v1/__init__.py
Normal file
0
app/api/v1/__init__.py
Normal file
0
app/api/v1/models/__init__.py
Normal file
0
app/api/v1/models/__init__.py
Normal file
0
app/api/v1/routes/__init__.py
Normal file
0
app/api/v1/routes/__init__.py
Normal file
0
app/api/v1/schemas/__init__.py
Normal file
0
app/api/v1/schemas/__init__.py
Normal file
0
app/api/v1/services/__init__.py
Normal file
0
app/api/v1/services/__init__.py
Normal file
7
main.py
Normal file
7
main.py
Normal 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
4
requirements.txt
Normal file
@ -0,0 +1,4 @@
|
||||
fastapi
|
||||
uvicorn
|
||||
sqlalchemy
|
||||
pydantic
|
Loading…
x
Reference in New Issue
Block a user