This guide helps you install Navet for Home Assistant.
You only need to choose one installation method.
Connect another standalone screen
On the new standalone screen, choose Connect with another device to display a one-time code. On your primary device, open your signed-in Navet app or PWA → Settings → System → Authorized devices, enter the code, then review and approve access. The new screen connects automatically with its own revocable session. This works on HTTP installations without camera access or a separate browser sign-in.
Pick an installation method
| Choose this | Use it when |
|---|---|
| HACS custom panel | You already use HACS and want Navet in the Home Assistant sidebar. This is the easiest choice for most HACS users. |
| Home Assistant App | You use Home Assistant OS and want Home Assistant to run Navet for you. |
| Standalone Docker | You already manage Docker and want Navet to run as a separate website. |
Not sure which one to choose? Use the HACS custom panel if you already have HACS. Otherwise, use the Home Assistant App.
Option 1: Install with HACS
What you need
- Home Assistant
- HACS
Install Navet
-
Open HACS in Home Assistant.
-
Open Integrations.
-
Open the menu in the top-right corner and choose Custom repositories.
-
Paste this address:
https://github.com/awesomestvi/navet-home-assistant -
Choose Integration as the category, then add the repository.
-
Search for Navet in HACS and download it.
-
Restart Home Assistant.
-
Go to Settings → Devices & services.
-
Choose Add integration, search for Navet, and add it.
-
Open Navet from the Home Assistant sidebar.
That is all. Navet uses your current Home Assistant session. You do not need a separate Navet account, Home Assistant address, or access token.
Already Installed From navet-hacs?
No action is required. The repository was renamed from awesomestvi/navet-hacs to
awesomestvi/navet-home-assistant, and GitHub redirects the old address.
If HACS cannot fetch an update, remove only the old custom repository entry, add
https://github.com/awesomestvi/navet-home-assistant as an Integration repository, then
redownload Navet and restart Home Assistant. Keep the Navet integration installed; you do not need
to clear your dashboard configuration.
Option 2: Install the Home Assistant App
What you need
- Home Assistant OS on an
amd64oraarch64system
Install Navet
-
Go to Settings → Apps → App store.
-
Open the menu in the top-right corner and choose Repositories.
-
Paste this address and add it:
https://github.com/awesomestvi/navet -
Find Navet in the App store and install it.
-
Turn on Start on boot.
-
Turn on Show in sidebar.
-
Choose Start.
-
Wait until the App says Running.
-
Choose Open Web UI.
Your rooms and devices should appear automatically. You do not need to enter a Home Assistant address or access token.
The App opens inside Home Assistant through Ingress by default. If you also need a separate dashboard URL, open the App’s Network settings and assign any available host port to the optional direct Navet web interface. Direct access uses its own Home Assistant sign-in and does not weaken the authenticated Ingress/sidebar route.
Option 3: Install with Docker
RSS cards load public HTTPS feeds through Navet’s authenticated endpoint. Local-network feed addresses are rejected, including public hostnames that resolve to private addresses.
Choose this option only if you are comfortable using Docker.
What you need
- Docker with Docker Compose
- a Home Assistant address reachable from the browser while it signs in, such as a LAN, VPN, Tailscale, or external address
- a route from the Navet container to the same Home Assistant installation
Create the Compose file
-
Make a new folder for Navet.
-
Inside that folder, create a file named
docker-compose.yml. -
Paste this into the file:
services:navet:image: ghcr.io/awesomestvi/navet:latestcontainer_name: navetrestart: unless-stoppedports:- "8080:80"volumes:- navet-data:/datavolumes:navet-data:
Start Navet
-
Open a terminal in the folder that contains
docker-compose.yml. -
Run:
Terminal window docker compose up -d -
Open
http://localhost:8080when Docker runs on this computer. From another device, replacelocalhostwith the Docker host’s LAN, VPN, or public name. -
Choose Home Assistant, enter an address that the current browser can reach, and sign in.
-
Approve the Home Assistant login when asked.
Keep the navet-data volume. It stores your Navet dashboard and browser sign-ins when the
container is updated or recreated.
Sign in at home or through a VPN
Open Settings → System → Home Assistant and choose Edit URL when moving between a LAN, VPN, Tailscale, or external address. Navet starts a fresh Home Assistant login at the new address; an address change never inherits the previous access token.
After login, Navet presents only the newly issued token to the old trusted route. If the old route accepts it, Navet has proved that both addresses reach the same Home Assistant and keeps the same dashboard workspace. If the old route rejects the token or cannot be reached, Navet isolates the new address in its own workspace. This prevents an unverified server from reading the existing home’s dashboard data. Returning to an address used before restores the workspace associated with that address.
A camera direct-stream URL that you explicitly configure in Navet is the exception: that custom URL is intentionally opened by the browser and must be reachable from the browser’s current network. Home Assistant-provided snapshots, HLS, and fallback paths remain behind Navet’s proxy. Native WebRTC can still negotiate a separate media path supplied by Home Assistant; when that path is not usable across the current network, Navet falls back to another provider-supported transport.
Optional: fix Navet to one Home Assistant address
NAVET_HASS_URL is not required. Without it, each browser can enter a Home Assistant address
and complete Home Assistant’s normal login. Use this setting only when the operator intentionally
wants to prevent users from choosing another address.
To fix Navet to one address, add these lines under restart: unless-stopped:
environment: NAVET_HASS_URL: "http://homeassistant.local:8123"Replace the example with an address that works from the Navet container. When the setting is present, users must sign in through that exact normalized address. Update the value and recreate the container when the address changes.
Update the Docker installation
Run these commands from the same folder:
docker compose pulldocker compose up -dDo not add -v when stopping the Compose project. That option deletes the saved Navet data.
Optional: let Navet hide the Home Assistant bars
Skip this section during your first install. Navet works without it.
The HACS integration includes a small Home Assistant module that lets Navet hide the Home Assistant header and sidebar in kiosk mode.
-
Make sure the Navet HACS integration is installed.
-
Open your Home Assistant
configuration.yamlfile. -
Add:
frontend:extra_module_url:- /api/navet/static/navet-ha-shell.js -
Save the file.
-
Check the configuration in Home Assistant.
-
Restart Home Assistant.
If you already have a frontend: section, add only the extra_module_url lines inside it. Do not
create a second frontend: section.
If something does not work
Navet is missing from the sidebar after a HACS install
- Make sure Home Assistant was restarted after the download.
- Go to Settings → Devices & services.
- Check that the Navet integration is installed.
- If it is missing, choose Add integration and add Navet.
- Refresh the browser page.
The Home Assistant App does not open
- Open Settings → Apps → Navet.
- Check that its status is Running.
- Open the Log tab and read the first error.
- Restart the App and try Open Web UI again.
Enable or change direct App access
The direct interface is disabled until you assign it a host port.
- Go to Settings → Apps → Navet → Configuration.
- In Network, enter an available host port for the optional direct Navet web interface, such
as
8234, and save. - Restart Navet, then open
http://homeassistant.local:8234with the port you selected. - Sign in to Home Assistant when Navet asks. This browser-bound session is separate from the session Home Assistant provides through Ingress.
If Home Assistant reports that the port is already in use, choose another port. Removing the port from Network disables direct access without affecting Open Web UI or the sidebar.
Docker cannot connect to Home Assistant
- If the Home Assistant sign-in page does not open, make sure the address entered in Navet works from the current browser and that its VPN or external route is connected.
- If Home Assistant accepts the sign-in but Navet says the address is unreachable, make sure the exact address and port work from the Navet container. If it says the sign-in code was rejected, confirm the address shown on the Home Assistant login page matches the address entered in Navet and start a fresh sign-in.
- If the server uses HTTPS, make sure the container trusts its certificate.
- If Navet says it is configured for another address, update or remove
NAVET_HASS_URLand recreate the container. - Run
docker compose up -dagain after changing the Compose file.
Navet stays on Starting your dashboard
- Reload Navet once so the current application version is active.
- Confirm that the Navet container can still reach its trusted Home Assistant upstream. The browser does not need to reach that saved LAN address after sign-in.
- Keep the VPN connected if it is how you reach Navet itself. A VPN route to Home Assistant is needed in the browser only when opening its authorization page or when you configured a custom camera direct-stream URL.
- If the screen changes to a recovery message, use Retry connection for a temporary outage. Choose Back to login when you need to clear the current browser session and sign in again.
Login returns to the wrong page
If Navet is behind a reverse proxy, make sure the proxy keeps the original host name and HTTPS information. Start the login and finish it in the same browser.
For more checks, see Connection or sign-in fails.
You are ready
Open Navet and check that your rooms and devices appear. Then continue with Your first 15 minutes with Navet.