Skip to content

Commit ff5c750

Browse files
committed
Initial commit
1 parent 28252d3 commit ff5c750

File tree

140 files changed

+3066
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+3066
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./docker/data

app/.DS_Store

6 KB
Binary file not shown.

app/.env.example

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
ENV=
2+
DB_CONNECTION=
3+
DB_HOST=
4+
DB_PORT=
5+
DB_DATABASE=
6+
DB_USERNAME=
7+
DB_PASSWORD=

app/__pycache__/main.cpython-39.pyc

171 Bytes
Binary file not shown.

app/api/.DS_Store

6 KB
Binary file not shown.

app/api/__init__.py

Whitespace-only changes.
113 Bytes
Binary file not shown.

app/api/v1/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from fastapi import APIRouter
2+
from core.configs import get_settings
3+
4+
from .register.routes import register_router as register_v1_router
5+
from .auth.routes import auth_router as auth_v1_router
6+
from .user.routes import user_router as user_v1_router
7+
8+
settings = get_settings()
9+
10+
router = APIRouter()
11+
router.include_router(register_v1_router, prefix=settings.API_V1_PREFIX + "/register", tags=["Registration"])
12+
router.include_router(auth_v1_router, prefix=settings.API_V1_PREFIX + "/auth", tags=["Authentication"])
13+
router.include_router(user_v1_router, prefix=settings.API_V1_PREFIX + "/users", tags=["Users"])
14+
15+
__all__ = ["router"]
656 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)