First alpha release of System Hub with core functionality: 📊 Features Implemented: - System monitoring (CPU, Memory, Disk, Network) - Service management (Start, Stop, Restart, Enable/Disable) - System logs viewer with filtering - Backup & restore functionality - System information dashboard - Health monitoring with visual gauges - Storage monitoring - Temperature sensors 🔧 Components: - Complete RPCD backend (luci.system-hub) - JavaScript API wrapper - 9 UI views (overview, services, logs, backup, etc.) - UCI configuration support - ACL permissions configured 📦 Version: - Package: 0.0.1-alpha - Status: Alpha - Core features ready for testing This is an initial alpha release for testing and feedback. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
17 lines
480 B
Makefile
17 lines
480 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-system-hub
|
|
PKG_VERSION:=0.0.1-alpha
|
|
PKG_RELEASE:=1
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_MAINTAINER:=SecuBox Project <support@secubox.com>
|
|
|
|
LUCI_TITLE:=System Hub - Central Control Dashboard
|
|
LUCI_DESCRIPTION:=Central system control with monitoring, services, logs, and backup
|
|
LUCI_DEPENDS:=+luci-base +rpcd +coreutils +coreutils-base64
|
|
LUCI_PKGARCH:=all
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|