testing new config varaible

This commit is contained in:
2021-07-20 10:34:11 -04:00
parent 6ceb1970db
commit 4603bff08e
2 changed files with 19 additions and 13 deletions

View File

@@ -1,11 +1,15 @@
{
"name": "Hello world",
"version": "3",
"slug": "hello_world",
"description": "My first real add-on!",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"boot": "auto",
"options": {},
"schema": {}
}
{
"name": "Hello world",
"version": "4",
"slug": "hello_world",
"description": "My first real add-on!",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"boot": "auto",
"options": {
"beer": "This is the new string, instead of Hello World!!!"
},
"schema": {
"beer": "str"
},
}

View File

@@ -1,3 +1,5 @@
#!/usr/bin/with-contenv bashio
#!/usr/bin/env bashio
echo Hello world!
BEER=$(bashio::config 'beer')
echo ${BEER}