From 777e4abd7a8e68d3b84dde267ab430b4ff256e65 Mon Sep 17 00:00:00 2001 From: danielhanchen <23090290+danielhanchen@users.noreply.github.com> Date: Wed, 15 Jul 2026 13:39:35 +0000 Subject: [PATCH] Point to .bootstrap_password file instead of printing the seed for PR #7140 --- studio/backend/main.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/studio/backend/main.py b/studio/backend/main.py index 20102c118e..76037ac4d5 100644 --- a/studio/backend/main.py +++ b/studio/backend/main.py @@ -566,9 +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: {bootstrap_pw}") - print(f" (also saved to: {bootstrap_path})") - print(" Open the Studio UI to sign in and change it.") + print(f" password saved to: {bootstrap_path}") + print(" open that file to read the password, then sign in and change it.") print("=" * 60 + "\n") else: app.state.bootstrap_password = storage.get_bootstrap_password()