You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+94-15
Original file line number
Diff line number
Diff line change
@@ -6,22 +6,24 @@ A dead simple static **HOM**epage for your serv**ER** to keep your services on h
6
6
7
7
It supports keyboard shortcuts:
8
8
9
-
*`/` Start searching.
10
-
*`Escape` Stop searching.
11
-
*`Enter` Open the first matching result (respects the bookmark's `_target` property).
12
-
*`Alt`/`Option` + `Enter` Open the first matching result in a new tab.
9
+
-`/` Start searching.
10
+
-`Escape` Stop searching.
11
+
-`Enter` Open the first matching result (respects the bookmark's `_target` property).
12
+
-`Alt`/`Option` + `Enter` Open the first matching result in a new tab.
13
13
14
14
If you need authentication support, you're on your own (it can be secured using a web server auth module or exposing it only through a VPN network / SSH tunnel, ...)
**How to build / install it?** There is no build system (😱), use it like that! It's meant to be stupid simple & zero maintenance required. Just copy the static files somewhere, and visit the `index.html`.
36
+
Homer is a static page that need to be generated from the source in this repository.
37
+
Use the folowing command to build the project:
38
+
39
+
```sh
40
+
# Using yarn (recommended)
41
+
yarn install
42
+
yarn build
43
+
44
+
# **OR** Using npm
45
+
npm install
46
+
npm run build
47
+
```
48
+
49
+
Then your dashboard is ready to use in the `/dist` directory.
50
+
Use it like any static HTML content (use a webserver or open the html index directly).
51
+
52
+
## Developement
53
+
54
+
```sh
55
+
# Using yarn (recommended)
56
+
yarn install
57
+
yarn serve
58
+
59
+
# **OR** Using npm
60
+
npm install
61
+
npm run serve
62
+
```
63
+
64
+
### themes
65
+
66
+
Theme are meant to be simple customization (written in [scss](https://sass-lang.com/documentation/syntax)).
67
+
To addd a new theme, just add a file in the theme directory, and put all style in the `body #app.theme-<name>` scope. Then import it in the main style file.
68
+
69
+
```scss
70
+
// `src/assets/themes/my-awesome-theme.scss`
71
+
body#app.theme-my-awesome-theme. { ... }
72
+
```
73
+
74
+
```scss
75
+
// `src/assets/app.scss`
76
+
// Themes import
77
+
@import"./themes/sui.scss";
78
+
...
79
+
@import"./themes/my-awesome-theme.scss";
80
+
```
35
81
36
82
## Configuration
37
83
@@ -42,12 +88,46 @@ Title, icons, links, colors, and services can be configured in the `config.yml`
42
88
# Homepage configuration
43
89
# See https://fontawesome.com/icons for icons options
44
90
45
-
title: "Simple homepage"
91
+
title: "App dashboard"
46
92
subtitle: "Homer"
47
93
logo: "assets/homer.png"
48
94
# Alternatively a fa icon can be provided:
49
-
# icon: "fas fa-skull-crossbones"
50
-
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.header:
95
+
# icon: "fas fa-skull-crossbones"
96
+
97
+
header: true # Set to false to hide the header
98
+
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.header:
99
+
100
+
# Optional theming
101
+
theme: default # 'default' or one of the theme available in 'src/assets/themes'.
102
+
103
+
# Here is the exaustive list of customization parameters
104
+
# However all value are optional and will fallback to default if not set.
105
+
# if you want to change only some of the colors, feel free to remove all unused key.
106
+
colors:
107
+
light:
108
+
highlight-primary: "#3367d6"
109
+
highlight-secondary: "#4285f4"
110
+
highlight-hover: "#5a95f5"
111
+
background: "#f5f5f5"
112
+
card-background: "#ffffff"
113
+
text: "#363636"
114
+
text-header: "#424242"
115
+
text-title: "#303030"
116
+
text-subtitle: "#424242"
117
+
card-shadow: rgba(0, 0, 0, 0.1)
118
+
link-hover: "#363636"
119
+
dark:
120
+
highlight-primary: "#3367d6"
121
+
highlight-secondary: "#4285f4"
122
+
highlight-hover: "#5a95f5"
123
+
background: "#131313"
124
+
card-background: "#2b2b2b"
125
+
text: "#eaeaea"
126
+
text-header: "#ffffff"
127
+
text-title: "#fafafa"
128
+
text-subtitle: "#f5f5f5"
129
+
card-shadow: rgba(0, 0, 0, 0.4)
130
+
link-hover: "#ffdd57"
51
131
52
132
# Optional message
53
133
message:
@@ -62,7 +142,7 @@ links:
62
142
- name: "ansible"
63
143
icon: "fab fa-github"
64
144
url: "https://github.com/xxxxx/ansible/"
65
-
target: '_blank'# optional html a tag target attribute
145
+
target: "_blank"# optional html a tag target attribute
66
146
- name: "Wiki"
67
147
icon: "fas fa-book"
68
148
url: "https://wiki.xxxxxx.com/"
@@ -81,7 +161,7 @@ services:
81
161
subtitle: "Continuous integration server"
82
162
tag: "CI"
83
163
url: "#"
84
-
target: '_blank'# optional html a tag target attribute
164
+
target: "_blank"# optional html a tag target attribute
85
165
- name: "RabbitMQ Management"
86
166
logo: "/assets/tools/rabbitmq.png"
87
167
subtitle: "Manage & monitor RabbitMQ server"
@@ -111,7 +191,6 @@ services:
111
191
subtitle: "Pingdom public reports overview"
112
192
tag: "CI"
113
193
url: "#"
114
-
115
194
```
116
195
117
196
If you choose to fetch message information from an endpoint, the output format should be:
0 commit comments