]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - README.md
Adding gitter chat link
[github/bastienwirtz/homer.git] / README.md
CommitLineData
09763dbf 1# Homer
e1470a8c
BW
2[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
3[![Contribution Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
97fa090e 4[![Gitter chat](https://img.shields.io/badge/chat-on_gitter-008080.svg?style=flat-square)](https://gitter.im/homer-dashboard)
e1470a8c
BW
5[![Dowload](https://img.shields.io/badge/Dowload-homer.zip-orange)](https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip)
6[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/awesome-selfhosted/awesome-selfhosted)
7bb903e6 7
e1470a8c
BW
8A dead simple static **HOM**epage for your serv**ER** to keep your s
9ervices on hand, from a simple `yaml` configuration file.
09763dbf 10
97fa090e 11## [Live demo](https://homer-demo.netlify.app) • [Chat](https://gitter.im/homer-dashboard/)
e1470a8c 12![screenshot](https://raw.github.com/bastienwirtz/homer/master/screenshot.png)
a4de4a3a 13
e1470a8c
BW
14## Table of Contents
15- [Features](#features)
16- [Getting started](#getting-started)
17- [Configuration](#configuration)
18- [Roadmap](#roadmap)
19- [Developement](#developement)
a4de4a3a 20
e1470a8c
BW
21## Features
22- [yaml](http://yaml.org/) file configuration
23- Installable (pwa)
24- Search
25- Grouping
26- Theme customization
27- Offline heathcheck
28- keyboard shortcuts:
29 - `/` Start searching.
30 - `Escape` Stop searching.
31 - `Enter` Open the first matching result (respects the bookmark's `_target` property).
32 - `Alt`/`Option` + `Enter` Open the first matching result in a new tab.
09763dbf 33
09763dbf 34
e1470a8c 35## Getting started
22555b55 36
e1470a8c 37Homer is a full static html/js dashboard, generated from the source in `/src` using webpack. It's meant to be served by an HTTP server, **it will not work if you open dist/index.html directly over file:// protocol**.
b79e6ed1
BW
38
39### Using docker
40
41```sh
2301d891 42docker run -p 8080:8080 -v /your/local/config.yml:/www/config.yml -v /your/local/assets/:/www/assets b4bz/homer:latest
b79e6ed1
BW
43```
44
e1470a8c 45### Using the release tarball (prebuilt, ready to use)
b9c5fcf0 46
e1470a8c
BW
47Download and extract the latest the latest release (`homer.zip`) from the [release page](https://github.com/bastienwirtz/homer/releases), rename the `config.yml.dist` file to `config.yml`, and put it behind a webserver.
48
b9c5fcf0 49```sh
e1470a8c
BW
50wget https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip
51unzip homer.zip
52cd homer
53cp config.yml.dist config.yml
54npx serve # or python -m http.server 8010 or apache, nginx ...
b9c5fcf0
BW
55```
56
e1470a8c 57### Build manually
b9c5fcf0
BW
58
59```sh
60# Using yarn (recommended)
61yarn install
e1470a8c 62yarn build
b9c5fcf0
BW
63
64# **OR** Using npm
65npm install
e1470a8c 66npm run build
b9c5fcf0
BW
67```
68
e1470a8c 69Then your dashboard is ready to use in the `/dist` directory.
e41196e7 70
22555b55 71## Configuration
09763dbf 72
e1142750 73Title, icons, links, colors, and services can be configured in the `config.yml` file (located in project root directory once built, or in the `public/` directory in developement mode), using [yaml](http://yaml.org/) format.
09763dbf 74
09763dbf
BW
75```yaml
76---
77# Homepage configuration
e41196e7 78# See https://fontawesome.com/icons for icons options
09763dbf 79
b9c5fcf0 80title: "App dashboard"
09763dbf
BW
81subtitle: "Homer"
82logo: "assets/homer.png"
e41196e7 83# Alternatively a fa icon can be provided:
b9c5fcf0
BW
84# icon: "fas fa-skull-crossbones"
85
86header: true # Set to false to hide the header
87footer: '<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:
88
89# Optional theming
90theme: default # 'default' or one of the theme available in 'src/assets/themes'.
91
92# Here is the exaustive list of customization parameters
93# However all value are optional and will fallback to default if not set.
94# if you want to change only some of the colors, feel free to remove all unused key.
95colors:
96 light:
97 highlight-primary: "#3367d6"
98 highlight-secondary: "#4285f4"
99 highlight-hover: "#5a95f5"
100 background: "#f5f5f5"
101 card-background: "#ffffff"
102 text: "#363636"
103 text-header: "#424242"
104 text-title: "#303030"
105 text-subtitle: "#424242"
106 card-shadow: rgba(0, 0, 0, 0.1)
107 link-hover: "#363636"
108 dark:
109 highlight-primary: "#3367d6"
110 highlight-secondary: "#4285f4"
111 highlight-hover: "#5a95f5"
112 background: "#131313"
113 card-background: "#2b2b2b"
114 text: "#eaeaea"
115 text-header: "#ffffff"
116 text-title: "#fafafa"
117 text-subtitle: "#f5f5f5"
118 card-shadow: rgba(0, 0, 0, 0.4)
119 link-hover: "#ffdd57"
09763dbf
BW
120
121# Optional message
122message:
7fd9dc6f 123 # url: "https://<my-api-endpoint>" # Can fetch information from an endpoint to override value below.
e3212743 124 style: "is-warning"
09763dbf 125 title: "Optional message!"
e1470a8c 126 content: "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
09763dbf
BW
127
128# Optional navbar
5028088e 129# links: [] # Allows for navbar (dark mode, layout, and search) without any links
09763dbf 130links:
e1470a8c 131 - name: "Link 1"
aabb7d53 132 icon: "fab fa-github"
e1470a8c 133 url: "https://github.com/bastienwirtz/homer"
e1142750 134 target: "_blank" # optional html tag target attribute
e1470a8c 135 - name: "link 2"
aabb7d53 136 icon: "fas fa-book"
e1470a8c 137 url: "https://github.com/bastienwirtz/homer"
09763dbf
BW
138
139# Services
140# First level array represent a group.
7312bdd6 141# Leave only a "items" key if not using group (group name, icon & tagstyle are optional, section separation will not be displayed).
09763dbf 142services:
e1470a8c 143 - name: "Application"
aabb7d53 144 icon: "fa fa-code-fork"
09763dbf 145 items:
e1470a8c
BW
146 - name: "Awesome app"
147 logo: "assets/tools/sample.png"
e41196e7
BW
148 # Alternatively a fa icon can be provided:
149 # icon: "fab fa-jenkins"
e1470a8c
BW
150 subtitle: "Bookmark example"
151 tag: "app"
152 url: "https://www.reddit.com/r/selfhosted/"
e1142750 153 target: "_blank" # optional html tag target attribute
e1470a8c
BW
154 - name: "Another one"
155 logo: "assets/tools/sample2.png"
156 subtitle: "Another application"
157 tag: "app"
7312bdd6 158 # Optional tagstyle
a2fdb8a9 159 tagstyle: "is-success"
09763dbf 160 url: "#"
e1470a8c 161 - name: "Other group"
aabb7d53 162 icon: "fas fa-heartbeat"
09763dbf 163 items:
e1470a8c
BW
164 - name: "Another app"
165 logo: "assets/tools/sample.png"
166 subtitle: "Another example"
167 tag: "other"
168 url: "https://www.reddit.com/r/selfhosted/"
169 target: "_blank" # optionnal html a tag target attribute
e41196e7 170```
7fd9dc6f
BW
171
172If you choose to fetch message information from an endpoint, the output format should be:
173
174```json
175{
7bb903e6
FB
176 "style": null,
177 "title": "Lorem ipsum 42",
178 "content": "LA LA LA Lorem ipsum dolor sit amet, ....."
7fd9dc6f
BW
179}
180```
181
182`null` value or missing keys will be ignored and value from the `config.yml` will be used if available.
22555b55 183Empty values (either in `config.yml` or the endpoint data) will hide the element (ex: set `"title": ""` to hide the title bar).
fcf5f412
IS
184
185### Style Options
186
187Homer uses [bulma CSS](https://bulma.io/), which provides a [modifiers syntax](https://bulma.io/documentation/modifiers/syntax/). You'll notice in the config there is a `tagstyle` option. It can be set to any of the bulma modifiers. You'll probably want to use one of these 4 main colors:
188
189- `is-info` (blue)
190- `is-success` (green)
191- `is-warning` (yellow)
192- `is-danger` (red)
193
194You can read the [bulma modifiers page](https://bulma.io/documentation/modifiers/syntax/) for other options regarding size, style, or state.
e1470a8c
BW
195
196
197## Roadmap
198
199- [ ] Add more themes.
200- [ ] Add support for custom service card (add custom feature to some service / app link)
201
202
203## Development
204
205```sh
206# Using yarn (recommended)
207yarn install
208yarn serve
209
210# **OR** Using npm
211npm install
212npm run serve
213```
214
215### Themes
216
217Themes are meant to be simple customization (written in [scss](https://sass-lang.com/documentation/syntax)).
218To 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.
219
220```scss
221// `src/assets/themes/my-awesome-theme.scss`
222body #app.theme-my-awesome-theme. { ... }
223```
224
225```scss
226// `src/assets/app.scss`
227// Themes import
228@import "./themes/sui.scss";
229...
230@import "./themes/my-awesome-theme.scss";
231```