diff --git a/public/assets/config-demo.yml.dist b/public/assets/config-demo.yml.dist index ac2b4118..9e842555 100644 --- a/public/assets/config-demo.yml.dist +++ b/public/assets/config-demo.yml.dist @@ -83,7 +83,7 @@ services: node: "node1" warning_value: 50 danger_value: 80 - api_token: "xxxxxxxxxxxx" + api_token: !secret proxmox_api - name: "An awesome app" logo: "assets/tools/sample.png" subtitle: "Bookmark example" @@ -95,7 +95,7 @@ services: items: - name: "Octoprint" logo: "https://cdn-icons-png.flaticon.com/512/3112/3112529.png" - apikey: "xxxxxxxxxxxx" + apikey: !secret octoprint_api endpoint: "https://homer-demo-content.netlify.app/octoprint" type: "OctoPrint" - name: "Example item" @@ -107,7 +107,7 @@ services: target: "_blank" - name: "Weather" location: "Lyon" - apikey: "xxxxxxxxxxxx" # insert your own API key here. Request one from https://openweathermap.org/api. + apikey: !secret weather_api # insert your own API key here. Request one from https://openweathermap.org/api. units: "metric" endpoint: "https://homer-demo-content.netlify.app/openweather/weather" type: "OpenWeather" diff --git a/public/assets/secrets.yml b/public/assets/secrets.yml index 6029ca88..6283cb5c 100644 --- a/public/assets/secrets.yml +++ b/public/assets/secrets.yml @@ -1 +1,4 @@ -some_password: welcome # include it in your config.yml by using !secret some_password \ No newline at end of file +some_password: welcome # include it in your config.yml by using !secret some_password +proxmox_api: xxxxxxxxxxxx +octoprint_api: xxxxxxxxxxxx +weather_api: xxxxxxxxxxxx \ No newline at end of file