From 9c9762c7005facb728d43e63f3dd2389ca86a588 Mon Sep 17 00:00:00 2001 From: kelinfoxy <67766943+kelinfoxy@users.noreply.github.com> Date: Wed, 28 Jan 2026 22:14:18 -0500 Subject: [PATCH] docs: Update script references from ez-homelab-tui.py to ez-homelab.py - Update README-TUI.md to reference the new simplified script name - Change all command examples to use ez-homelab.py - Update syntax check examples to use new filename --- README-TUI.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README-TUI.md b/README-TUI.md index 4f6abab..2d299de 100644 --- a/README-TUI.md +++ b/README-TUI.md @@ -45,18 +45,18 @@ A modern, user-friendly Terminal User Interface (TUI) replacement for the comple #### Interactive Setup (Recommended) ```bash -python ez-homelab-tui.py +python ez-homelab.py ``` #### Automated Deployment ```bash # Complete your .env file first, then: -python ez-homelab-tui.py --yes +python ez-homelab.py --yes ``` #### Save Configuration Only ```bash -python ez-homelab-tui.py --save-only +python ez-homelab.py --save-only ``` ## Command Line Options @@ -193,7 +193,7 @@ After successful deployment: ### Running Tests ```bash # Basic syntax check -python -m py_compile ez-homelab-tui.py +python -m py_compile ez-homelab.py # YAML validation python -c "import yaml; yaml.safe_load(open('config-templates/traefik/dynamic/external-host-production.yml'))"