mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
Added scripts to install HACS in DevContainer for testing the integration alongside other HACS components. Changes: - scripts/setup: Automatically install HACS and create symlink - scripts/sync-hacs: Sync HACS-installed integrations via symlinks - .gitignore: Ignore custom_components/* except tibber_prices HACS installs to config/custom_components/, symlinks in custom_components/ make integrations visible to Home Assistant. Impact: Developers can test with other integrations. No user changes.
85 lines
3.2 KiB
Bash
Executable file
85 lines
3.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
||
|
||
# script/setup: Setup script used by DevContainers to prepare the project
|
||
|
||
set -e
|
||
|
||
cd "$(dirname "$0")/.."
|
||
|
||
# Install optional release note backend: GitHub Copilot CLI (AI-powered)
|
||
if command -v npm >/dev/null 2>&1; then
|
||
echo "==> Installing GitHub Copilot CLI for AI-powered release notes..."
|
||
npm install -g @github/copilot 2>/dev/null || {
|
||
echo " ⚠️ Warning: GitHub Copilot CLI installation failed (optional)"
|
||
echo " ℹ️ You can install it manually: npm install -g @github/copilot"
|
||
}
|
||
fi
|
||
|
||
# Install optional release note backend: git-cliff (template-based)
|
||
if command -v cargo >/dev/null 2>&1; then
|
||
echo "==> Installing git-cliff for template-based release notes..."
|
||
cargo install git-cliff || {
|
||
echo " ⚠️ Warning: git-cliff installation failed (optional)"
|
||
}
|
||
fi
|
||
|
||
scripts/bootstrap
|
||
|
||
# Install HACS for testing with other custom components
|
||
echo ""
|
||
echo "==> Installing HACS in dev environment..."
|
||
echo " This allows testing your integration alongside other HACS components."
|
||
|
||
# Ensure config directory is initialized by Home Assistant first
|
||
if [ ! -f "config/.HA_VERSION" ]; then
|
||
echo " → Initializing Home Assistant config directory..."
|
||
hass --config "${PWD}/config" --script ensure_config >/dev/null 2>&1 || true
|
||
fi
|
||
|
||
# Create custom_components directory if it doesn't exist
|
||
mkdir -p config/custom_components
|
||
|
||
# Clean up existing HACS installation if present
|
||
if [ -d "config/custom_components/hacs" ]; then
|
||
echo " → Removing existing HACS installation..."
|
||
rm -rf config/custom_components/hacs
|
||
fi
|
||
if [ -L "custom_components/hacs" ]; then
|
||
echo " → Removing existing HACS symlink..."
|
||
rm -f custom_components/hacs
|
||
fi
|
||
|
||
# Download and extract HACS (stable release ZIP)
|
||
cd config/custom_components
|
||
echo " → Downloading HACS..."
|
||
if wget -q https://github.com/hacs/integration/releases/latest/download/hacs.zip && \
|
||
unzip -q hacs.zip -d hacs && \
|
||
rm hacs.zip; then
|
||
cd ../..
|
||
|
||
# Install HACS Python dependencies
|
||
echo " → Installing HACS Python dependencies..."
|
||
if uv pip install -q 'aiogithubapi>=22.10.1'; then
|
||
# Create symlink so HA finds HACS alongside tibber_prices
|
||
echo " → Creating symlink in custom_components/..."
|
||
ln -sf "${PWD}/config/custom_components/hacs" custom_components/hacs
|
||
|
||
echo " ✓ HACS installed successfully in config/custom_components/hacs/"
|
||
echo " ℹ️ HACS is installed as stable release (no auto-updates)"
|
||
echo " ℹ️ HACS will install other integrations in config/custom_components/"
|
||
echo " ℹ️ Run './scripts/sync-hacs' after installing integrations via HACS"
|
||
else
|
||
echo " ⚠️ Warning: Failed to install HACS Python dependencies"
|
||
echo " ℹ️ You can install manually: uv pip install 'aiogithubapi>=22.10.1'"
|
||
fi
|
||
else
|
||
echo " ⚠️ Warning: HACS installation failed"
|
||
echo " ℹ️ You can install manually:"
|
||
echo " cd config/custom_components"
|
||
echo " wget https://github.com/hacs/integration/releases/latest/download/hacs.zip"
|
||
echo " unzip hacs.zip -d hacs && rm hacs.zip"
|
||
cd ../..
|
||
fi
|
||
|
||
echo ""
|
||
echo "==> Project is now ready to go!"
|