Exposed docs endpoint, added default env
This commit is contained in:
@@ -3,7 +3,9 @@ from fastapi import FastAPI
|
||||
from app.api.v1 import auth, keys
|
||||
from app.core.config import settings
|
||||
|
||||
app = FastAPI(title=settings.PROJECT_NAME)
|
||||
app = FastAPI(
|
||||
title=settings.PROJECT_NAME
|
||||
)
|
||||
app.include_router(auth.router, prefix=f"{settings.API_V1_STR}/auth", tags=["auth"])
|
||||
app.include_router(keys.router, prefix=f"{settings.API_V1_STR}/keys", tags=["keys"])
|
||||
|
||||
|
Reference in New Issue
Block a user