Dev version: add term refs (#32927)

This commit is contained in:
c0ffeeca7 2024-05-24 09:27:45 +02:00 committed by GitHub
parent 1f32a3696b
commit 409f40cf67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,19 +10,19 @@ If you want to stay on the bleeding-edge Home Assistant Core development branch,
{% if page.installation == "os" or page.installation == "supervised" %}
1. Join the dev channel
1. Join the dev channel.
```bash
ha supervisor options --channel dev
```
2. Reload the supervisor
2. Reload the {% term "Home Assistant Supervisor" %}.
```bash
ha supervisor reload
```
3. Update Home Assistant core to the latest dev version
3. Update {% term "Home Assistant Core" %} to the latest dev version.
```bash
ha core update --backup
@ -42,24 +42,24 @@ docker pull {{ site.installation.container }}:dev
1. Stop the Home Assistant service.
2. Switch to the user that is running Home Assistant
2. Switch to the user that is running Home Assistant.
```bash
sudo -u homeassistant -H -s
```
3. Activate the virtual environment that Home Assistant is running in
3. Activate the virtual environment that Home Assistant is running in.
```bash
source /srv/homeassistant/bin/activate
```
4. Download and install the version you want
4. Download and install the version you want.
```bash
pip3 install --upgrade git+https://github.com/home-assistant/core.git@dev
```
5. When that is complete start the service again for it to use the new files.
5. When that is complete, start the service again for it to use the new files.
{% endif %}