Shri
commited on
Commit
·
6d5a7b9
1
Parent(s):
6bbbda9
initial commit
Browse files- .gitignore +3 -0
- README.md +1 -1
- main.py +7 -0
- requirements/dev.txt +0 -0
- requirements/prod.txt +0 -0
- src/config.py +0 -0
- src/database.py +0 -0
- src/exceptions.py +0 -0
- src/home/config.py +0 -0
- src/home/constants.py +1 -0
- src/home/dependencies.py +0 -0
- src/home/exceptions.py +0 -0
- src/home/models.py +0 -0
- src/home/router.py +0 -0
- src/home/schemas.py +0 -0
- src/home/service.py +0 -0
- src/home/utils.py +0 -0
- src/main.py +0 -0
- src/models.py +0 -0
- src/pagination.py +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__
|
| 2 |
+
venv/
|
| 3 |
+
.env
|
README.md
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
#
|
|
|
|
| 1 |
+
# YB's Wellness App FastAPI Backend
|
main.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from fastapi import FastAPI
|
| 2 |
+
|
| 3 |
+
app = FastAPI()
|
| 4 |
+
|
| 5 |
+
@app.get("/")
|
| 6 |
+
def root():
|
| 7 |
+
return {"message": "Hello, FastAPI!"}
|
requirements/dev.txt
ADDED
|
File without changes
|
requirements/prod.txt
ADDED
|
File without changes
|
src/config.py
ADDED
|
File without changes
|
src/database.py
ADDED
|
File without changes
|
src/exceptions.py
ADDED
|
File without changes
|
src/home/config.py
ADDED
|
File without changes
|
src/home/constants.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
WELCOME_MESSAGE = "Welcome to Yuvabe's Home Screen"
|
src/home/dependencies.py
ADDED
|
File without changes
|
src/home/exceptions.py
ADDED
|
File without changes
|
src/home/models.py
ADDED
|
File without changes
|
src/home/router.py
ADDED
|
File without changes
|
src/home/schemas.py
ADDED
|
File without changes
|
src/home/service.py
ADDED
|
File without changes
|
src/home/utils.py
ADDED
|
File without changes
|
src/main.py
ADDED
|
File without changes
|
src/models.py
ADDED
|
File without changes
|
src/pagination.py
ADDED
|
File without changes
|