Files
api/plugin/scripts/output-local-url.sh
Eli Bosley ce61fee41c feat: improve local dev with install path (#1221)
- also add better watcher support

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **New Features**
- Added a helper that displays a local installation URL to simplify
setting up the plugin.

- **Chores**
- Updated service and container port configurations to ensure consistent
network connectivity (changed from 8080 to 5858).
- Refined container management to gracefully handle running instances
during startup.
- Improved build and installation routines for streamlined deployment
and enhanced reliability.
- Enhanced documentation to clarify installation and usage instructions
for better user experience.
- Introduced a new document outlining development workflows for better
guidance.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---
- To see the specific tasks where the Asana app for GitHub is being
used, see below:
  - https://app.asana.com/0/0/1209561202532053
2025-03-17 09:44:10 -04:00

11 lines
437 B
Bash
Executable File

#!/bin/bash
# Use ANSI escape codes for color and formatting
# \e[1m = bold, \e[32m = green, \e[0m = reset formatting
echo -e "\e[1m\e[32m"
echo "=============================================================="
echo " INSTALL THE LOCAL PLUGIN USING THIS URL: "
echo " http://${HOST_LAN_IP}:5858/dynamix.unraid.net.plg "
echo "=============================================================="
echo -e "\e[0m"