mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 22:12:23 +00:00
e4732af0f5
- Fix PVE nodes: buildNodeUrl in ProxmoxNodesSection.tsx now prioritizes guestURL over host (was ignoring guestURL entirely) - Add PBS support: GuestURL field added to PBSInstance config, model, and API handlers - Add PMG support: GuestURL field added to PMGInstance config, model, and API handlers - Update NodeSummaryTable to use guestURL for PBS nodes - Frontend types updated for PBS/PMG guestURL support The Guest URL setting in node configuration now works correctly across all node types. When set, it takes priority over the Host URL when clicking on node names to navigate to the Proxmox/PBS/PMG web UI. Closes #870
Internal API Package
This directory contains the API server implementation for Pulse.
Important Note About frontend-modern/
The frontend-modern/ subdirectory that appears here is:
- AUTO-GENERATED during builds
- NOT the source code - just a build artifact
- IN .gitignore - never committed
- REQUIRED BY GO - The embed directive needs it here
Frontend Development Location
👉 Edit frontend files at: /opt/pulse/frontend-modern/src/
Why This Structure?
Go's //go:embed directive has limitations:
- Cannot use
../paths to access parent directories - Cannot follow symbolic links
- Must embed files within the Go module
This is a known Go limitation and our structure works around it.