Files

63 lines
1.4 KiB
Bash
Raw Permalink Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://esphome.io/
2023-03-22 20:48:20 -04:00
2023-06-20 10:12:16 -04:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2023-03-22 20:48:20 -04:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt-get install -y git
msg_ok "Installed Dependencies"
PYTHON_VERSION="3.12" setup_uv
msg_info "Setting up Virtual Environment"
mkdir -p /opt/esphome
mkdir -p /root/config
cd /opt/esphome
$STD uv venv /opt/esphome/.venv
$STD /opt/esphome/.venv/bin/python -m ensurepip --upgrade
$STD /opt/esphome/.venv/bin/python -m pip install --upgrade pip
$STD /opt/esphome/.venv/bin/python -m pip install esphome tornado esptool
msg_ok "Setup and Installed ESPHome"
2023-03-22 20:48:20 -04:00
2025-07-04 11:36:15 +02:00
msg_info "Linking esphome to /usr/local/bin"
rm -f /usr/local/bin/esphome
ln -s /opt/esphome/.venv/bin/esphome /usr/local/bin/esphome
msg_ok "Linked esphome binary"
2023-06-20 09:06:25 -04:00
msg_info "Creating Service"
mkdir -p /root/config
2023-06-23 13:17:03 -04:00
cat <<EOF >/etc/systemd/system/esphomeDashboard.service
[Unit]
2023-03-22 20:48:20 -04:00
Description=ESPHome Dashboard
After=network.target
2023-06-23 13:17:03 -04:00
2023-03-22 20:48:20 -04:00
[Service]
ExecStart=/opt/esphome/.venv/bin/esphome dashboard /root/config/
2023-03-22 20:48:20 -04:00
Restart=always
User=root
2023-06-23 13:17:03 -04:00
2023-03-22 20:48:20 -04:00
[Install]
2023-06-23 13:17:03 -04:00
WantedBy=multi-user.target
EOF
2025-04-01 20:22:40 +02:00
systemctl enable -q --now esphomeDashboard
2023-06-20 09:06:25 -04:00
msg_ok "Created Service"
2023-03-22 20:48:20 -04:00
motd_ssh
2023-05-15 07:39:30 -04:00
customize
2023-03-22 20:48:20 -04:00
msg_info "Cleaning up"
2024-05-02 13:26:16 -04:00
$STD apt-get -y autoremove
$STD apt-get -y autoclean
2023-03-22 20:48:20 -04:00
msg_ok "Cleaned"