🐛 fix(base.py): set AUTO_LOGIN to True to enable automatic login as a super user

🔧 chore(base.py): improve readability by formatting logger.debug statements
This commit is contained in:
gustavoschaedler 2023-08-15 20:56:10 +01:00
commit effbddbcb0

View file

@ -44,7 +44,7 @@ class Settings(BaseSettings):
# If AUTO_LOGIN = True
# > The application does not request login and logs in automatically as a super user.
AUTO_LOGIN: bool = False
AUTO_LOGIN: bool = True
FIRST_SUPERUSER: str = "superuser"
FIRST_SUPERUSER_PASSWORD: str = "12345"