From 3e03c401615a72d89eea22018b82b3222981fc3b Mon Sep 17 00:00:00 2001 From: danielhanchen <23090290+danielhanchen@users.noreply.github.com> Date: Wed, 15 Jul 2026 13:19:17 +0000 Subject: [PATCH] Print bootstrap password at startup for PR #7140 --- studio/backend/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/studio/backend/main.py b/studio/backend/main.py index 07bf67945f..20102c118e 100644 --- a/studio/backend/main.py +++ b/studio/backend/main.py @@ -566,7 +566,8 @@ async def lifespan(app: FastAPI): print("\n" + "=" * 60) print("DEFAULT ADMIN ACCOUNT CREATED") print(f" username: {storage.DEFAULT_ADMIN_USERNAME}") - print(f" password saved to: {bootstrap_path}") + print(f" password: {bootstrap_pw}") + print(f" (also saved to: {bootstrap_path})") print(" Open the Studio UI to sign in and change it.") print("=" * 60 + "\n") else: