mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-09 07:27:58 +00:00
* Add matter-hub (ct) * Enable ARM64 support by default in matter-hub.sh * Remove Home Assistant setup instruction Removed instruction to set Home Assistant URL and token. --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com>
81 lines
2.0 KiB
Bash
81 lines
2.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/RiDDiX/home-assistant-matter-hub
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
NODE_VERSION="24" NODE_MODULE="pnpm@^10" setup_nodejs
|
|
|
|
fetch_and_deploy_gh_release "matter-hub" "RiDDiX/home-assistant-matter-hub" "tarball"
|
|
|
|
msg_info "Building Matter Hub"
|
|
cd /opt/matter-hub
|
|
MATTER_HUB_VERSION=$(cat ~/.matter-hub)
|
|
$STD pnpm install --frozen-lockfile
|
|
$STD pnpm run release:version "$MATTER_HUB_VERSION"
|
|
APP_VERSION="$MATTER_HUB_VERSION" $STD pnpm build
|
|
msg_ok "Built Matter Hub"
|
|
|
|
msg_info "Installing Matter Hub"
|
|
mkdir -p /opt/matter-hub_app
|
|
cat <<EOF >/opt/matter-hub_app/package.json
|
|
{
|
|
"name": "hamh-wrapper",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"home-assistant-matter-hub": "file:/opt/matter-hub/apps/home-assistant-matter-hub/package.tgz"
|
|
}
|
|
}
|
|
EOF
|
|
cd /opt/matter-hub_app
|
|
$STD npm install --omit=dev --no-audit --no-fund
|
|
msg_ok "Installed Matter Hub"
|
|
|
|
msg_info "Configuring Matter Hub"
|
|
mkdir -p /opt/matter-hub_data
|
|
cat <<EOF >/opt/matter-hub.env
|
|
HAMH_HOME_ASSISTANT_URL=http://CHANGE_ME:8123/
|
|
HAMH_HOME_ASSISTANT_ACCESS_TOKEN=CHANGE_ME
|
|
HAMH_HTTP_PORT=8482
|
|
HAMH_LOG_LEVEL=info
|
|
APP_VERSION=${MATTER_HUB_VERSION}
|
|
EOF
|
|
chmod 600 /opt/matter-hub.env
|
|
msg_ok "Configured Matter Hub"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/matter-hub.service
|
|
[Unit]
|
|
Description=Home Assistant Matter Hub
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=root
|
|
WorkingDirectory=/opt/matter-hub_data
|
|
EnvironmentFile=/opt/matter-hub.env
|
|
ExecStart=/opt/matter-hub_app/node_modules/.bin/home-assistant-matter-hub start --storage-location=/opt/matter-hub_data
|
|
Restart=on-failure
|
|
RestartSec=10
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now matter-hub
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|