Skip to content

Commit b9c5fcf

Browse files
committed
Build system integration using vue-cli.
1 parent ab7ac44 commit b9c5fcf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+10028
-10347
lines changed

.browserslistrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.eslintrc.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true,
5+
},
6+
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
7+
parserOptions: {
8+
parser: "babel-eslint",
9+
},
10+
rules: {
11+
"no-console": "off",
12+
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
13+
"vue/require-v-for-key": "off",
14+
},
15+
};

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw?

Dockerfile

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
# build stage
2+
FROM node:lts-alpine as build-stage
3+
4+
WORKDIR /app
5+
6+
COPY package*.json ./
7+
RUN yarn install
8+
9+
COPY . .
10+
RUN yarn build
11+
12+
# production stage
113
FROM alpine:3.11
214

3-
COPY ./ /www/
15+
COPY --from=build-stage /app/dist /www/
416

517
ENV USER darkhttpd
618
ENV GROUP darkhttpd
@@ -12,4 +24,4 @@ RUN addgroup -S ${GROUP} -g ${GID} && adduser -D -S -u ${UID} ${USER} ${GROUP} &
1224

1325
USER darkhttpd
1426

15-
ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]
27+
ENTRYPOINT ["darkhttpd","/www/", "--no-listing"]

Dockerfile.arm32v7

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
1+
# build stage
2+
FROM node:lts-alpine as build-stage
3+
4+
WORKDIR /app
5+
6+
COPY package*.json ./
7+
RUN yarn install
8+
9+
COPY . .
10+
RUN yarn build
11+
12+
# Multi arch build support
113
FROM alpine as qemu
214

315
ARG QEMU_VERSION="v4.2.0-7"
416

517
RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-arm-static && chmod +x qemu-arm-static
618

19+
# production stage
720
FROM arm32v7/alpine:3.11
821

922
COPY --from=qemu qemu-arm-static /usr/bin/
10-
COPY ./ /www/
23+
COPY --from=build-stage /app/dist /www/
1124

1225
ENV USER darkhttpd
1326
ENV GROUP darkhttpd

Dockerfile.arm64v8

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
1+
# build stage
2+
FROM node:lts-alpine as build-stage
3+
4+
WORKDIR /app
5+
6+
COPY package*.json ./
7+
RUN yarn install
8+
9+
COPY . .
10+
RUN yarn build
11+
12+
# Multi arch build support
113
FROM alpine as qemu
214

315
ARG QEMU_VERSION="v4.2.0-7"
416

517
RUN wget https://github.com/multiarch/qemu-user-static/releases/download/${QEMU_VERSION}/qemu-aarch64-static && chmod +x qemu-aarch64-static
618

19+
# production stage
720
FROM arm64v8/alpine:3.11
821

922
COPY --from=qemu qemu-aarch64-static /usr/bin/
10-
COPY ./ /www/
23+
COPY --from=build-stage /app/dist /www/
1124

1225
ENV USER darkhttpd
1326
ENV GROUP darkhttpd

README.md

+94-15
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,24 @@ A dead simple static **HOM**epage for your serv**ER** to keep your services on h
66

77
It supports keyboard shortcuts:
88

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.
1313

1414
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, ...)
1515

1616
![screenshot](https://raw.github.com/bastienwirtz/homer/master/screenshot.png)
1717

1818
## Roadmap
1919

20-
* [ ] Colors / theme customization
21-
* [ ] Enable PWA support (making possible to "install" - add to homescreen - it)
22-
* [ ] Improve maintainability (external library import & service workers cached file list.)
20+
- [ ] Add more themes.
21+
- [ ] Add support for custom service card (add custom feature to some service / app link)
22+
- [x] Colors / theme customization
23+
- [x] Enable PWA support (making possible to "install" - add to homescreen - it)
24+
- [x] Improve maintainability (external library import & service workers cached file list.)
2325

24-
## Installation
26+
## Usage
2527

2628
### Using docker
2729

@@ -31,7 +33,51 @@ sudo docker run -p 8080:8080 -v /your/local/config.yml:/www/config.yml -v /your/
3133

3234
### Manually
3335

34-
**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+
```
3581

3682
## Configuration
3783

@@ -42,12 +88,46 @@ Title, icons, links, colors, and services can be configured in the `config.yml`
4288
# Homepage configuration
4389
# See https://fontawesome.com/icons for icons options
4490

45-
title: "Simple homepage"
91+
title: "App dashboard"
4692
subtitle: "Homer"
4793
logo: "assets/homer.png"
4894
# 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"
51131

52132
# Optional message
53133
message:
@@ -62,7 +142,7 @@ links:
62142
- name: "ansible"
63143
icon: "fab fa-github"
64144
url: "https://github.com/xxxxx/ansible/"
65-
target: '_blank' # optional html a tag target attribute
145+
target: "_blank" # optional html a tag target attribute
66146
- name: "Wiki"
67147
icon: "fas fa-book"
68148
url: "https://wiki.xxxxxx.com/"
@@ -81,7 +161,7 @@ services:
81161
subtitle: "Continuous integration server"
82162
tag: "CI"
83163
url: "#"
84-
target: '_blank' # optional html a tag target attribute
164+
target: "_blank" # optional html a tag target attribute
85165
- name: "RabbitMQ Management"
86166
logo: "/assets/tools/rabbitmq.png"
87167
subtitle: "Manage & monitor RabbitMQ server"
@@ -111,7 +191,6 @@ services:
111191
subtitle: "Pingdom public reports overview"
112192
tag: "CI"
113193
url: "#"
114-
115194
```
116195
117196
If you choose to fetch message information from an endpoint, the output format should be:

0 commit comments

Comments
 (0)