From 2d636f2bd7012cd66cca18bdbaa95e69f0fbe070 Mon Sep 17 00:00:00 2001 From: ahtlon Date: Wed, 1 Jul 2026 17:54:16 +0200 Subject: [PATCH] [Main] add note about new doc url Fixes #12 --- app/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/main.py b/app/main.py index a34df88..8179908 100644 --- a/app/main.py +++ b/app/main.py @@ -26,6 +26,9 @@ def checkDeps(): @asynccontextmanager async def lifespan(app: FastAPI): + logger.critical("-"*63) + logger.critical("---- Documentation is at http://127.0.0.1:8000/api/v1/docs ----") + logger.critical("-"*63) checkDeps() create_db_and_tables() create_first_user(db=get_db_session())