remove stale dev artifacts; rename dev_install.sh to plugin_setup.sh

This commit is contained in:
Gmer4Lfe
2026-06-14 13:08:14 -04:00
parent 39b8e47ff5
commit 722e688783
9 changed files with 12 additions and 1607 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ no separate monitoring stack, no third-party dashboards.
```
Plugin/
├── dev_install.sh # One-time developer setup: symlinks plugin into web server
├── plugin_setup.sh # One-time setup: symlinks plugin into web server
├── Icons/ # Source icon assets (1024px master files)
└── unraid/ # The Unraid platform adapter + plugin application
├── adapter.sh # Platform adapter — provides platform_*() API to all scripts
@@ -75,7 +75,7 @@ so behaviour stays consistent without a shell dependency.
| Script | Role | When It Runs |
|--------|------|--------------|
| `dev_install.sh` | Symlinks `Plugin/unraid/` into Unraid's web server | Once, manually, after cloning or moving the repo |
| `plugin_setup.sh` | Symlinks `Plugin/unraid/` into Unraid's web server | Once, manually, after cloning or moving the repo |
| `build.sh` | Packages the plugin as a `.txz` for release | Before publishing a new plugin version |
---