Skip to content

Commit cf6b82c

Browse files
authored
Migrate JSON config to YAML (#129)
1 parent 5cae0c1 commit cf6b82c

File tree

4 files changed

+44
-43
lines changed

4 files changed

+44
-43
lines changed

log-viewer/build.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

log-viewer/build.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
build_from:
3+
aarch64: ghcr.io/hassio-addons/base/aarch64:10.1.0
4+
amd64: ghcr.io/hassio-addons/base/amd64:10.1.0
5+
armhf: ghcr.io/hassio-addons/base/armhf:10.1.0
6+
armv7: ghcr.io/hassio-addons/base/armv7:10.1.0
7+
i386: ghcr.io/hassio-addons/base/i386:10.1.0

log-viewer/config.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

log-viewer/config.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Log Viewer
3+
version: dev
4+
slug: logviewer
5+
description: Browser-based log utility for Home Assistant
6+
url: https://github.com/hassio-addons/addon-log-viewer
7+
init: false
8+
ingress: true
9+
ingress_stream: true
10+
panel_icon: mdi:text-box-outline
11+
homeassistant: 0.92.0b2
12+
arch:
13+
- aarch64
14+
- amd64
15+
- armhf
16+
- armv7
17+
- i386
18+
homeassistant_api: true
19+
auth_api: true
20+
ports:
21+
80/tcp: null
22+
ports_description:
23+
80/tcp: Web interface (Not required for Ingress)
24+
map:
25+
- config
26+
- share
27+
- ssl
28+
options:
29+
ssl: true
30+
certfile: fullchain.pem
31+
keyfile: privkey.pem
32+
schema:
33+
log_level: list(trace|debug|info|notice|warning|error|fatal)?
34+
ssl: bool
35+
certfile: str
36+
keyfile: str
37+
leave_front_door_open: bool?

0 commit comments

Comments
 (0)