Shri commited on
Commit
6d5a7b9
·
1 Parent(s): 6bbbda9

initial commit

Browse files
.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ __pycache__
2
+ venv/
3
+ .env
README.md CHANGED
@@ -1 +1 @@
1
- # wellness-app-backend
 
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