-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathconfig.yml
129 lines (123 loc) · 4.83 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
# Homepage configuration
# See https://fontawesome.com/icons for icons options
title: "Node-Red Server"
subtitle: "My server dashboard"
logo: "assets/icons/home-server.png"
# icon: "fas fa-skull-crossbones" # Optional icon
header: true
footer: '<p>Created with <span class="has-text-danger">❤️</span> with <a href="https://bulma.io/">bulma</a>, <a href="https://vuejs.org/">vuejs</a> & <a href="https://fontawesome.com/">font awesome</a> // Fork me on <a href="https://github.com/bastienwirtz/homer"><i class="fab fa-github-alt"></i></a></p>' # set false if you want to hide it.
# Optional theme customization
theme: default
colors:
light:
highlight-primary: "#3367d6"
highlight-secondary: "#4285f4"
highlight-hover: "#5a95f5"
background: "#f5f5f5"
card-background: "#ffffff"
text: "#363636"
text-header: "#ffffff"
text-title: "#303030"
text-subtitle: "#424242"
card-shadow: rgba(0, 0, 0, 0.1)
link-hover: "#363636"
dark:
highlight-primary: "#3367d6"
highlight-secondary: "#4285f4"
highlight-hover: "#5a95f5"
background: "#131313"
card-background: "#2b2b2b"
text: "#eaeaea"
text-header: "#ffffff"
text-title: "#fafafa"
text-subtitle: "#f5f5f5"
card-shadow: rgba(0, 0, 0, 0.4)
link-hover: "#ffdd57"
# Optional message
# message:
# #url: https://b4bz.io
# style: "is-dark" # See https://bulma.io/documentation/components/message/#colors for styling options.
# title: "Demo !"
# icon: "fa fa-grin"
# content: "This is a dummy homepage demo. <br /> Find more information on <a href='https://github.com/bastienwirtz/homer'>github.com/bastienwirtz/homer</a>"
# Optional navbar
# links: [] # Allows for navbar (dark mode, layout, and search) without any links
links:
# - name: "Contribute"
# icon: "fab fa-github"
# url: "https://github.com/bastienwirtz/homer"
# target: "_blank" # optional html a tag target attribute
- name: "Server Wiki"
icon: "fas fa-book"
url: "https://github.com/nygma2004/km/wiki/Node-Red-Server"
target: "_blank"
# this will link to a second homer page that will load config from additionnal-page.yml and keep default config values as in config.yml file
# see url field and assets/additionnal-page.yml.dist used in this example:
# - name: "another page!"
# icon: "fas fa-file-alt"
# url: "#additionnal-page"
# Services
# First level array represent a group.
# Leave only a "items" key if not using group (group name, icon & tagstyle are optional, section separation will not be displayed).
services:
- name: "Applications"
icon: "fas fa-cloud"
items:
- name: "Node-Red Editor"
logo: "https://nodered.org/about/resources/media/node-red-icon.png"
subtitle: ""
tag: "nodered"
url: "http://192.168.1.80:1880"
target: "_blank" # optional html a tag target attribute
- name: "Node-Red UI"
logo: "https://nodered.org/about/resources/media/node-red-icon.png"
subtitle: "Dashboard"
tag: "nodered"
url: "http://192.168.1.80:1880/ui"
target: "_blank"
- name: "InfluxDB"
logo: "https://influxdata.github.io/branding/img/downloads/influxdata-logo--symbol--pool.svg"
subtitle: "Time-Series database"
tag: "app"
url: "http://192.168.1.80:8086"
target: "_blank"
- name: "Grafana"
logo: "https://grafana.com/static/img/about/grafana_logo_swirl_fullcolor.jpg"
subtitle: "Reporting tool"
tag: "app"
url: "http://192.168.1.80:3000"
target: "_blank"
- name: "phpLiteAdmin"
logo: "https://www.a2hosting.com/images/software_images/phpliteadmin_hosting2.png"
subtitle: "SQL database"
tag: "app"
url: "http://192.168.1.80/phpliteadmin/"
target: "_blank"
- name: "Zigbee2MQTT"
logo: "https://www.zigbee2mqtt.io/logo.png"
subtitle: "Zigbee network manager"
tag: "app"
url: "http://192.168.1.80:8085/"
target: "_blank"
- name: "Dashboards"
icon: "fas fa-chart-bar"
items:
- name: "Access Log"
logo: "https://grafana.com/static/img/about/grafana_logo_swirl_fullcolor.jpg"
subtitle: "RFID and PIN access log"
tag: "report"
url: "http://192.168.1.80:3000/d/6qNY14Ank/access-log?orgId=1"
target: "_blank"
- name: "System Log"
logo: "https://grafana.com/static/img/about/grafana_logo_swirl_fullcolor.jpg"
subtitle: "Log of monitored systems"
tag: "report"
url: "http://192.168.1.80:3000/d/6qNY14235/system-log?orgId=1"
target: "_blank"
- name: "Telegraf"
logo: "https://grafana.com/static/img/about/grafana_logo_swirl_fullcolor.jpg"
subtitle: "System metrics"
tag: "report"
url: "http://192.168.1.80:3000/d/5mxWB0hnz/telegraf-system-metrics?orgId=1&refresh=1m"
target: "_blank"