Skip to content

Commit

Permalink
fix: add root path
Browse files Browse the repository at this point in the history
  • Loading branch information
rorre authored Jun 9, 2024
1 parent 35c4c06 commit 5266425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cefies/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
import cefies.internal.firestore # noqa: F401 -- Intended to initialize Firebase
from cefies.routes import index_router, auth_router

app = FastAPI()
app = FastAPI(root_path="/api")
app.include_router(index_router)
app.include_router(auth_router)

0 comments on commit 5266425

Please sign in to comment.