1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-07-06 05:15:04 +01:00
Files
supervisor/tests/fixtures/basic-app-config.json
T
Mike Degatano f8880a72be Rename addon/addons to app/apps in filenames and imports (#6837)
* Rename addon/addons to app/apps in filenames and imports

Continues the addon→app terminology migration (#6786).
Renames all source files, test files, fixture files, and
directories that contained 'addon'/'addons' in their names,
and updates all imports accordingly.

Resolution check files in supervisor/resolution/checks/ that were
renamed override the slug property to preserve the existing API
contract (slugs are exposed via the resolution info API and used
to run checks by name).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Rename add-on.json fixture

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-13 20:55:46 +02:00

15 lines
356 B
JSON

{
"name": "Test Add-on",
"version": "1.0.1",
"slug": "test_addon",
"description": "This is a basic Test Add-on",
"arch": ["amd64"],
"url": "https://www.home-assistant.io/",
"startup": "application",
"boot": "auto",
"map": ["config:rw", "ssl", "media", "share"],
"options": {},
"schema": {},
"image": "test/{arch}-my-custom-addon"
}