docs(appdaemon): helmify docs (#32738)

**Description**
<!--
helmify docs
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [x ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
This commit is contained in:
Boemeltrein
2025-03-01 14:43:03 +01:00
committed by GitHub
parent 09e8ed046b
commit d4fda384fd
@@ -2,15 +2,37 @@
title: Installation Guide
---
- Set `HA Token` to a Long Live HA token that can be found by going to your profile and then at bottom of the page you will see `Long-Lived Access Tokens`.
## Configuration
- Set the env. `TOKEN` to a long-lived token from Home Assistant. To create a long-lived token, click your user icon in the HA front end and look for the Long-Lived Access Tokens card under the tab security.
- Create token and give it any name.
- Copy the token and paste it to the above field.
- Copy the token and paste it in your deployment file.
- Set `HA URL` to the IP or cluster url + port, for ex: `http://home-assistant.ix-home-assistant.svc.cluster.local:8123`
- Set `Dashboard URL` to a http/s url.
- Set the env. `DASH_URL` to a http url of your assigned IP+port or your configured https Ingress URL.
- HTTP example: `http://IP:PORT`
- HTTPS example: `https://app.mydomain.tld`
- Set the env. `HA_URL` to the IP, URL or Cluster-URL + port. For example: `http://home-assistant.home-assistant.svc.cluster.local:8123`
- HTTP ex: `http://IP:PORT`
- HTTPS ex: `https://app.mydomain.tld`
- Set the env. `LATITUDE`, `LONGITUDE`, `ELEVATION` by the using this 3rd party [service](https://www.latlong.net/) or any service you want. It needs to match to what you set in HA, according to AppDaemon's docs.
- Set `Latitude`, `Longitude`, `ELEVATION` by the using this 3rd party [service](https://www.latlong.net/) or any service you want. It needs to match to what you set in HA, according to AppDaemon's docs.
## Example Deployment
```yaml
TZ: Pacific/Honolulu
workload:
main:
podSpec:
containers:
main:
env:
DASH_URL: "http://192.168.1.215:5050"
HA_URL: "http://home-assistant.home-assistant.svc.cluster.local:8123"
LATITUDE: 21.306944
LONGITUDE: -157.858337
ELEVATION: 1217
TIMEZONE: "{{ .Values.TZ }}"
TOKEN: "ThisShouldBeTheVeryLongLivedTokenFromHomeAssistant"
```