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
This commit is contained in:
kelinfoxy
2026-01-28 22:14:18 -05:00
parent 5319bbc79c
commit 9c9762c700

View File

@@ -45,18 +45,18 @@ A modern, user-friendly Terminal User Interface (TUI) replacement for the comple
#### Interactive Setup (Recommended) #### Interactive Setup (Recommended)
```bash ```bash
python ez-homelab-tui.py python ez-homelab.py
``` ```
#### Automated Deployment #### Automated Deployment
```bash ```bash
# Complete your .env file first, then: # Complete your .env file first, then:
python ez-homelab-tui.py --yes python ez-homelab.py --yes
``` ```
#### Save Configuration Only #### Save Configuration Only
```bash ```bash
python ez-homelab-tui.py --save-only python ez-homelab.py --save-only
``` ```
## Command Line Options ## Command Line Options
@@ -193,7 +193,7 @@ After successful deployment:
### Running Tests ### Running Tests
```bash ```bash
# Basic syntax check # Basic syntax check
python -m py_compile ez-homelab-tui.py python -m py_compile ez-homelab.py
# YAML validation # YAML validation
python -c "import yaml; yaml.safe_load(open('config-templates/traefik/dynamic/external-host-production.yml'))" python -c "import yaml; yaml.safe_load(open('config-templates/traefik/dynamic/external-host-production.yml'))"