From 287bd17e04d3cbb18e8de458d21e85a0077ef3f7 Mon Sep 17 00:00:00 2001 From: Motoko Date: Mon, 30 Mar 2026 16:52:24 +0000 Subject: [PATCH] Fix: Disable auto admin creation by default --- app/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config.py b/app/config.py index bbfcc13..0e3f008 100644 --- a/app/config.py +++ b/app/config.py @@ -28,8 +28,8 @@ class Settings(BaseSettings): HOST: str = "0.0.0.0" PORT: int = 8000 LOG_LEVEL: str = "INFO" - INITIAL_ADMIN_USERNAME: str = "admin" - INITIAL_ADMIN_PASSWORD: str = "admin123" + INITIAL_ADMIN_USERNAME: str = "" # Empty = don't create admin automatically + INITIAL_ADMIN_PASSWORD: str = "" @property def resolved_database_url(self) -> str: