✏️ Remove debugger

This commit is contained in:
Sebastien Clement 2021-02-10 16:17:58 +01:00
parent fdf313bbb5
commit d4a6be22dc
4 changed files with 6 additions and 7 deletions

View File

@ -14,6 +14,7 @@ Easily backup your Home Assistant snapshots to Nextcloud.
- __Selective Backup__ : You can specify witch folder and add-on you want to backup.
- __Password protected Backup__ : this add-on can use the Home Assistant snapshot encryption.
- __Auto Clean__ : You can specify the maximum number of local snapshots and (__ONLY__) auto backed-up snapshots.
- __Auto Stop__ : This addon can stop addons before backup and restart them after backup
- __Restore__ : Upload backed-up snapshot to Home assistant.
- __Web UI__ : All the configuration is based on an easy-to-use web interface, no yaml needed.

View File

@ -15,6 +15,7 @@ Easily backup your Home Assistant snapshots to Nextcloud.
- __Selective Backup__ : You can specify witch folder and add-on you want to backup.
- __Password protected Backup__ : this add-on can use the Home Assistant snapshot encryption.
- __Auto Clean__ : You can specify the maximum number of local snapshots and (__ONLY__) auto backed-up snapshots.
- __Auto Stop__ : This addon can stop addons before backup and restart them after backup
- __Restore__ : Upload backed-up snapshot to Home assistant.
- __Web UI__ : All the configuration is based on an easy-to-use web interface, no yaml needed.

View File

@ -27,15 +27,12 @@
"log_level": "info"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"leave_front_door_open": "bool?"
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?"
},
"ports": {
"3000/tcp": null,
"9226/tcp": null
"3000/tcp": null
},
"ports_description": {
"3000/tcp": "Web interface (Not required for Hass.io Ingress)",
"9226/tcp": "NodeJS Debuger"
"3000/tcp": "Web interface (Not required for Hass.io Ingress)"
}
}

View File

@ -3,7 +3,7 @@
"version": "0.8.0",
"private": true,
"scripts": {
"start": "node --inspect=0.0.0.0:9226 ./bin/www "
"start": "node ./bin/www "
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",