🔧 chore(base.py): enable AUTO_LOGIN by default for easier development and testing

This commit is contained in:
Cristhian Zanforlin Lousa 2023-08-17 20:14:48 -03:00
commit d2dc0feae4

View file

@ -55,7 +55,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 = "langflow"
FIRST_SUPERUSER_PASSWORD: str = "langflow"