2018-06-13 22:14:05 -07:00
# Homer
2020-06-05 22:56:53 -07:00
[](https://opensource.org/licenses/Apache-2.0)
[](http://makeapullrequest.com)
[](https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip)
[](https://github.com/awesome-selfhosted/awesome-selfhosted)
2020-05-16 08:41:47 +02:00
2020-06-05 22:56:53 -07:00
A dead simple static **HOM**epage for your serv**ER ** to keep your s
ervices on hand, from a simple `yaml` configuration file.
2018-06-13 22:14:05 -07:00
2020-06-05 22:56:53 -07:00
## [Live demo](https://homer-demo.netlify.app).

2020-03-26 19:12:43 +00:00
2020-06-05 22:56:53 -07:00
## Table of Contents
- [Features ](#features )
- [Getting started ](#getting-started )
- [Configuration ](#configuration )
- [Roadmap ](#roadmap )
- [Developement ](#developement )
2020-03-26 19:12:43 +00:00
2020-06-05 22:56:53 -07:00
## Features
- [yaml ](http://yaml.org/ ) file configuration
- Installable (pwa)
- Search
- Grouping
- Theme customization
- Offline heathcheck
- keyboard shortcuts:
- `/` Start searching.
- `Escape` Stop searching.
- `Enter` Open the first matching result (respects the bookmark's `_target` property).
- `Alt` /`Option` + `Enter` Open the first matching result in a new tab.
2018-06-13 22:14:05 -07:00
2020-06-05 22:56:53 -07:00
## Getting started
2020-03-22 15:51:54 -07:00
2020-06-05 22:56:53 -07:00
Homer 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 ** .
2020-02-27 15:13:48 -08:00
### Using docker
```sh
2020-05-30 17:17:39 -07:00
docker run -p 8080:8080 -v /your/local/config.yml:/www/config.yml -v /your/local/assets/:/www/assets b4bz/homer:latest
2020-02-27 15:13:48 -08:00
```
2020-06-05 22:56:53 -07:00
### Using the release tarball (prebuilt, ready to use)
2020-05-25 15:07:03 -07:00
2020-06-05 22:56:53 -07:00
Download 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.
2020-05-25 15:07:03 -07:00
```sh
2020-06-05 22:56:53 -07:00
wget https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip
unzip homer.zip
cd homer
cp config.yml.dist config.yml
npx serve # or python -m http.server 8010 or apache, nginx ...
2020-05-25 15:07:03 -07:00
```
2020-06-05 22:56:53 -07:00
### Build manually
2020-05-25 15:07:03 -07:00
```sh
# Using yarn (recommended)
yarn install
2020-06-05 22:56:53 -07:00
yarn build
2020-05-25 15:07:03 -07:00
# **OR** Using npm
npm install
2020-06-05 22:56:53 -07:00
npm run build
2020-05-25 15:07:03 -07:00
```
2020-06-05 22:56:53 -07:00
Then your dashboard is ready to use in the `/dist` directory.
2018-11-12 21:14:38 -08:00
2020-03-22 15:51:54 -07:00
## Configuration
2018-06-13 22:14:05 -07:00
2020-05-27 20:58:20 -07:00
Title, 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.
2018-06-13 22:14:05 -07:00
```yaml
---
# Homepage configuration
2018-11-12 21:14:38 -08:00
# See https://fontawesome.com/icons for icons options
2018-06-13 22:14:05 -07:00
2020-05-25 15:07:03 -07:00
title: "App dashboard"
2018-06-13 22:14:05 -07:00
subtitle: "Homer"
logo: "assets/homer.png"
2018-11-12 21:14:38 -08:00
# Alternatively a fa icon can be provided:
2020-05-25 15:07:03 -07:00
# icon: "fas fa-skull-crossbones"
header: true # Set to false to hide the header
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:
# Optional theming
theme: default # 'default' or one of the theme available in 'src/assets/themes'.
# Here is the exaustive list of customization parameters
# However all value are optional and will fallback to default if not set.
# if you want to change only some of the colors, feel free to remove all unused key.
colors:
light:
highlight-primary: "#3367d6 "
highlight-secondary: "#4285f4 "
highlight-hover: "#5a95f5 "
background: "#f5f5f5 "
card-background: "#ffffff "
text: "#363636 "
text-header: "#424242 "
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 "
2018-06-13 22:14:05 -07:00
# Optional message
message:
2019-12-17 14:10:04 -08:00
# url: "https://<my-api-endpoint>" # Can fetch information from an endpoint to override value below.
2018-06-14 09:36:08 -07:00
style: "is-warning"
2018-06-13 22:14:05 -07:00
title: "Optional message!"
2020-06-05 22:56:53 -07:00
content: "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
2018-06-13 22:14:05 -07:00
# Optional navbar
2020-03-12 18:54:50 -05:00
# links: [] # Allows for navbar (dark mode, layout, and search) without any links
2018-06-13 22:14:05 -07:00
links:
2020-06-05 22:56:53 -07:00
- name: "Link 1"
2020-05-03 21:37:16 -07:00
icon: "fab fa-github"
2020-06-05 22:56:53 -07:00
url: "https://github.com/bastienwirtz/homer"
2020-05-27 20:58:20 -07:00
target: "_blank" # optional html tag target attribute
2020-06-05 22:56:53 -07:00
- name: "link 2"
2020-05-03 21:37:16 -07:00
icon: "fas fa-book"
2020-06-05 22:56:53 -07:00
url: "https://github.com/bastienwirtz/homer"
2018-06-13 22:14:05 -07:00
# Services
# First level array represent a group.
2019-11-10 10:05:49 -05:00
# Leave only a "items" key if not using group (group name, icon & tagstyle are optional, section separation will not be displayed).
2018-06-13 22:14:05 -07:00
services:
2020-06-05 22:56:53 -07:00
- name: "Application"
2020-05-03 21:37:16 -07:00
icon: "fa fa-code-fork"
2018-06-13 22:14:05 -07:00
items:
2020-06-05 22:56:53 -07:00
- name: "Awesome app"
logo: "assets/tools/sample.png"
2018-11-12 21:14:38 -08:00
# Alternatively a fa icon can be provided:
# icon: "fab fa-jenkins"
2020-06-05 22:56:53 -07:00
subtitle: "Bookmark example"
tag: "app"
url: "https://www.reddit.com/r/selfhosted/"
2020-05-27 20:58:20 -07:00
target: "_blank" # optional html tag target attribute
2020-06-05 22:56:53 -07:00
- name: "Another one"
logo: "assets/tools/sample2.png"
subtitle: "Another application"
tag: "app"
2019-11-10 10:05:49 -05:00
# Optional tagstyle
2019-10-23 17:29:55 -04:00
tagstyle: "is-success"
2018-06-13 22:14:05 -07:00
url: "#"
2020-06-05 22:56:53 -07:00
- name: "Other group"
2020-05-03 21:37:16 -07:00
icon: "fas fa-heartbeat"
2018-06-13 22:14:05 -07:00
items:
2020-06-05 22:56:53 -07:00
- name: "Another app"
logo: "assets/tools/sample.png"
subtitle: "Another example"
tag: "other"
url: "https://www.reddit.com/r/selfhosted/"
target: "_blank" # optionnal html a tag target attribute
2018-11-12 21:14:38 -08:00
```
2019-12-17 14:10:04 -08:00
If you choose to fetch message information from an endpoint, the output format should be:
```json
{
2020-05-16 08:41:47 +02:00
"style": null,
"title": "Lorem ipsum 42",
"content": "LA LA LA Lorem ipsum dolor sit amet, ....."
2019-12-17 14:10:04 -08:00
}
```
`null` value or missing keys will be ignored and value from the `config.yml` will be used if available.
2020-03-22 15:51:54 -07:00
Empty values (either in `config.yml` or the endpoint data) will hide the element (ex: set `"title": ""` to hide the title bar).
2020-05-05 22:51:11 -07:00
### Style Options
Homer 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:
- `is-info` (blue)
- `is-success` (green)
- `is-warning` (yellow)
- `is-danger` (red)
You can read the [bulma modifiers page ](https://bulma.io/documentation/modifiers/syntax/ ) for other options regarding size, style, or state.
2020-06-05 22:56:53 -07:00
## Roadmap
- [ ] Add more themes.
- [ ] Add support for custom service card (add custom feature to some service / app link)
## Development
```sh
# Using yarn (recommended)
yarn install
yarn serve
# **OR** Using npm
npm install
npm run serve
```
### Themes
Themes are meant to be simple customization (written in [scss ](https://sass-lang.com/documentation/syntax )).
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.
```scss
// `src/assets/themes/my-awesome-theme.scss`
body #app .theme-my-awesome-theme. { ... }
```
```scss
// `src/assets/app.scss`
// Themes import
@import "./themes/sui.scss";
...
@import "./themes/my-awesome-theme.scss";
```