🐛 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:
parent
3cd8aff96e
commit
effbddbcb0
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue