]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - README.md
Regroup all editable files in one place
[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)
897f67f0 4[![Gitter](https://badges.gitter.im/homer-dashboard/community.svg)](https://gitter.im/homer-dashboard/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
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
897f67f0 11## [Live demo](https://homer-demo.netlify.app) • [Chat](https://gitter.im/homer-dashboard/community)
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)
1bc75494
BW
17- [Configuration](docs/configuration.md)
18- [Tips & tricks](docs/tips-and-tricks.md)
e1470a8c 19- [Roadmap](#roadmap)
1bc75494
BW
20- [Developement](docs/developement.md)
21
a4de4a3a 22
e1470a8c
BW
23## Features
24- [yaml](http://yaml.org/) file configuration
25- Installable (pwa)
26- Search
27- Grouping
28- Theme customization
29- Offline heathcheck
30- keyboard shortcuts:
31 - `/` Start searching.
32 - `Escape` Stop searching.
33 - `Enter` Open the first matching result (respects the bookmark's `_target` property).
34 - `Alt`/`Option` + `Enter` Open the first matching result in a new tab.
09763dbf 35
09763dbf 36
e1470a8c 37## Getting started
22555b55 38
e1470a8c 39Homer 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 40
b102c9b2 41See [documentation](docs/configuration.md) for information about the configuration (`assets/config.yml`) options.
1bc75494 42
b79e6ed1
BW
43### Using docker
44
45```sh
b102c9b2 46docker run -p 8080:8080 -v /your/local/assets/:/www/assets b4bz/homer:latest
b79e6ed1
BW
47```
48
b102c9b2 49Default assets will be automatically installed in the `/www/assets` directory. Use `UID` and/or `GID` env var to change the assets owner (`docker run -e "UID=1000" -e "GID=1000" [...]`).
897f67f0 50
e1470a8c 51### Using the release tarball (prebuilt, ready to use)
b9c5fcf0 52
b102c9b2 53Download and extract the latest the latest release (`homer.zip`) from the [release page](https://github.com/bastienwirtz/homer/releases), rename the `assets/config.yml.dist` file to `assets/config.yml`, and put it behind a webserver.
e1470a8c 54
b9c5fcf0 55```sh
e1470a8c
BW
56wget https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip
57unzip homer.zip
58cd homer
b102c9b2 59cp assets/config.yml.dist assets/config.yml
e1470a8c 60npx serve # or python -m http.server 8010 or apache, nginx ...
b9c5fcf0
BW
61```
62
e1470a8c 63### Build manually
b9c5fcf0
BW
64
65```sh
66# Using yarn (recommended)
67yarn install
e1470a8c 68yarn build
b9c5fcf0
BW
69
70# **OR** Using npm
71npm install
e1470a8c 72npm run build
b9c5fcf0
BW
73```
74
e1470a8c 75Then your dashboard is ready to use in the `/dist` directory.
e41196e7 76
e1470a8c
BW
77
78## Roadmap
79
1bc75494 80- [ ] Add new themes.
e1470a8c 81- [ ] Add support for custom service card (add custom feature to some service / app link)