Clarify manage.py configure step wording

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 <noreply@anthropic.com>
This commit is contained in:
Paul Trowbridge 2026-04-05 16:26:31 -04:00
parent f2c4eb8339
commit a26a7643e4

View File

@ -223,7 +223,8 @@ def action_configure(cfg):
existing = cfg.copy() if cfg else {} 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() print()
new_cfg = {} new_cfg = {}
@ -490,7 +491,7 @@ def action_stop_service():
# ── Main menu ───────────────────────────────────────────────────────────────── # ── Main menu ─────────────────────────────────────────────────────────────────
MENU = [ MENU = [
('Configure database', action_configure), ('Configure database connection', action_configure),
('Deploy schema', action_deploy_schema), ('Deploy schema', action_deploy_schema),
('Deploy functions', action_deploy_functions), ('Deploy functions', action_deploy_functions),
('Build UI', action_build_ui), ('Build UI', action_build_ui),