From a26a7643e497403e7625b500a238cfa509af791d Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Sun, 5 Apr 2026 16:26:31 -0400 Subject: [PATCH] Clarify manage.py configure step wording MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Menu item: 'Configure database' → 'Configure database connection' Intro text: disambiguates that the database is what gets created, not a connection. Co-Authored-By: Claude Sonnet 4.6 --- manage.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manage.py b/manage.py index baedbcb..47b88aa 100755 --- a/manage.py +++ b/manage.py @@ -223,7 +223,8 @@ def action_configure(cfg): existing = cfg.copy() if cfg else {} - print(' Configure connection to an existing database, or create a new one.') + print(' Enter connection details. If the database does not exist, you will be') + print(' prompted for admin credentials to create it.') print() new_cfg = {} @@ -490,7 +491,7 @@ def action_stop_service(): # ── Main menu ───────────────────────────────────────────────────────────────── MENU = [ - ('Configure database', action_configure), + ('Configure database connection', action_configure), ('Deploy schema', action_deploy_schema), ('Deploy functions', action_deploy_functions), ('Build UI', action_build_ui),