Skip to content

Commit

Permalink
Fix the json transform
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Jan 26, 2022
1 parent 1fa5de8 commit 206d7ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,6 @@ appsettings.Development.json

# remove HA integration test files from git
tests/Integration/HA/config/*
!tests/Integration/HA/config/*.yaml
!tests/Integration/HA/config/*.yaml

*.idea
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"use-ssl": {
"type": "parameter",
"datatype": "bool",
"replaces": "ha_ssl",
"defaultValue": "false"
},
"token": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
"HomeAssistant": {
"Host": "ha_host",
"Port": ha_port,
"Ssl": ha_ssl,
"Token": "ha_token"
//#if (use-ssl)
"Ssl": true,
//#else
"Ssl": false,
//#endif
"Token": "ha_token",
},
"NetDaemon": {
"ApplicationConfigurationFolder": "./apps"
Expand Down

0 comments on commit 206d7ef

Please sign in to comment.