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: