1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- name: home-assistant-hacs
- base: core20
- version: '1.15.2'
- summary: Home Assistant Community Store
- description: |
- Manage (Install, track, upgrade) and discover custom elements for Home Assistant directly from the UI.
- **What?*** HACS is a integration that gives the user a powerful UI to handle downloads of custom integrations and plugins.
- Highlights of what HACS can do:
- - Help you discover new custom elements.
- - Help you install (download) new custom elements.
- - Help you keep track of your custom elements.
- - Manage(Install/Upgrade/Remove)
- - Shortcuts to repositories/issue tracker
- **Installation**
- 1. Go into integrations and add HACS. Home Assistant will now try to install every python-package that HACS depends on.
- 2. Step 1 might fail for an unknown reason, but **if so**:
- Restart Home Assistant with `sudo snap restart home-assistant-snap` and wait for it to boot up. Go back and continue as described in _step 1._
- 3. You should be prompted with some check-boxes that you need to confirm and then a screen to connect to github api.
- Wallah! HACS should be up running. :)
- **Can't find HACS in the integration list?**
- Open up a terminal and issue:
- ```
- sudo snap connect home-assistant-hacs:components home-assistant-snap:components
- ```
- HACS should auto-connect, but sometimes it might fail. You also have to do this manually if you are using a self-snapped `home-assistant-snap`.
- Please see https://git.giaever.org/joachimmg/home-assistant-hacs#install-from-the-snap-store-recommended for more details.
- **UPDATES? Out of date?**
- No worries. HACS is managed by HACS and Home Assistant. After installation you will be able to update HACS whenever there is a new update!
- license: MIT
- grade: stable
- confinement: strict
- architectures:
- - build-on: amd64
- - build-on: arm64
- - build-on: armhf
- - build-on: ppc64el
- apps:
- list:
- command: bin/app
- plugs:
- - components
- plugs:
- components:
- interface: content
- content: components
- target: $SNAP_DATA/custom_components
- default-provider: home-assistant-snap
- hooks:
- post-refresh:
- plugs: [components]
- connect-plug-components:
- plugs: [components]
- disconnect-plug-components:
- plugs: [components]
- parts:
- connection:
- plugin: dump
- source: ./source
- source-type: local
- organize:
- app: bin/app
- hooks: snap/hooks
- stage-packages:
- - rsync
- hacs:
- plugin: dump
- source: https://github.com/hacs/integration.git
- source-tag: ${SNAPCRAFT_PROJECT_VERSION}
- organize:
- custom_components/hacs: hacs
- stage:
- - hacs
|