mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-20 18:23:47 +00:00
d78c388cd0
- Prompts user to set up SSH access during auto-setup - Guides user to paste their Pulse server's public key - Adds key to /root/.ssh/authorized_keys - Installs lm-sensors automatically - Runs sensors-detect --auto for proper sensor detection - Optional: user can skip and set up later manually - Includes validation of SSH key format - Shows clear instructions for manual setup if skipped This ensures temperature monitoring works out-of-the-box for users who run the auto-setup script.
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.