All Projects → bastienwirtz → Homer

bastienwirtz / Homer

Licence: apache-2.0
A very simple static homepage for your server.

Programming Languages

Vue
7211 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects
Dockerfile
14818 projects
HTML
75241 projects

Projects that are alternatives of or similar to Homer

Intranet-Home-Page
Intranet Home Page is a highly-configurable self-hosted browser homepage with integrations for public and local data feeds.
Stars: ✭ 56 (-98.34%)
Mutual labels:  homepage, self-hosted
Heimdall
As the name suggests Heimdall Application Dashboard is a dashboard for all your web applications. It doesn't need to be limited to applications though, you can add links to anything you like.
Stars: ✭ 3,501 (+3.58%)
Mutual labels:  dashboard, homepage
Hastic Grafana App
Hastic data management server for labeling patterns and anomalies in Grafana
Stars: ✭ 166 (-95.09%)
Mutual labels:  self-hosted, dashboard
dashy
🚀 A self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more!
Stars: ✭ 7,103 (+110.15%)
Mutual labels:  homepage, self-hosted
Organizr
HTPC/Homelab Services Organizer - Written in PHP
Stars: ✭ 3,605 (+6.66%)
Mutual labels:  dashboard, homepage
Your spotify
Self hosted Spotify tracking dashboard
Stars: ✭ 102 (-96.98%)
Mutual labels:  self-hosted, dashboard
Babybuddy
A 👶 buddy to help caregivers track sleep, feedings, diaper changes, and tummy time to learn about and predict baby's needs without (as much) guess work.
Stars: ✭ 1,021 (-69.79%)
Mutual labels:  self-hosted, dashboard
Personal Management System
Your web application for managing personal data. <[email protected]>
Stars: ✭ 2,027 (-40.03%)
Mutual labels:  self-hosted, dashboard
Youtransfer
The simple but elegant self-hosted file transfer & sharing solution
Stars: ✭ 1,525 (-54.88%)
Mutual labels:  self-hosted
Laravel Parse
A Parse SDK bridge for Laravel 5
Stars: ✭ 116 (-96.57%)
Mutual labels:  self-hosted
Bookmarks
a simple self-hosted bookmarking app that can import bookmarks from delicious and chrome
Stars: ✭ 112 (-96.69%)
Mutual labels:  self-hosted
Just Dashboard
📊 📋 Dashboards using YAML or JSON files
Stars: ✭ 1,511 (-55.3%)
Mutual labels:  dashboard
Vue Notus
Vue Notus: Free Tailwind CSS UI Kit and Admin
Stars: ✭ 108 (-96.8%)
Mutual labels:  dashboard
Krisk
Statistical Interactive Visualization with pandas+Jupyter integration on top of Echarts.
Stars: ✭ 111 (-96.72%)
Mutual labels:  dashboard
Rapid
🐳 A lightweight Docker Developer Interface for Docker Remote API
Stars: ✭ 117 (-96.54%)
Mutual labels:  dashboard
Traduora
Ever® Traduora - Open-Source Translation Management Platform
Stars: ✭ 1,580 (-53.25%)
Mutual labels:  self-hosted
Staradmin Free Angular Admin Template
Star Admin Angular Admin is a free admin template based on Bootstrap 4 and Angular
Stars: ✭ 112 (-96.69%)
Mutual labels:  dashboard
Privacy Respecting
Curated List of Privacy Respecting Services and Software
Stars: ✭ 1,663 (-50.8%)
Mutual labels:  self-hosted
Databazel
The analytical and reporting solution for MongoDB
Stars: ✭ 118 (-96.51%)
Mutual labels:  dashboard
Phoenix live dashboard
Realtime dashboard with metrics, request logging, plus storage, OS and VM insights
Stars: ✭ 1,657 (-50.98%)
Mutual labels:  dashboard

Homer's donut
Homer

A dead simple static HOMepage for your servER to keep your services on hand, from a simple yaml configuration file.

DemoChatGetting started

License: Apache 2 Gitter chat Download homer static build Awesome

Table of Contents

Features

  • yaml file configuration
  • Installable (pwa)
  • Search
  • Grouping
  • Theme customization
  • Offline heath check
  • 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.

Getting started

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.

See documentation for information about the configuration (assets/config.yml) options.

Using docker

To launch container:

docker run -d \
  -p 8080:8080 \
  -v </your/local/assets/>:/www/assets \
  --restart=always \
  b4bz/homer:latest

Default 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" [...]).

Using docker-compose

The docker-compose.yml file must be edited to match your needs. Set the port and volume (equivalent to -p and -v arguments):

volumes:
  - /your/local/assets/:/www/assets
ports:
  - 8080:8080

To launch container:

cd /path/to/docker-compose.yml
docker-compose up -d

Default assets will be automatically installed in the /www/assets directory. Use UID and/or GID env var to change the assets owner, also in docker-compose.yml:

environment:
  - UID=1000
  - GID=1000

Using the release tarball (prebuilt, ready to use)

Download and extract the latest release (homer.zip) from the release page, rename the assets/config.yml.dist file to assets/config.yml, and put it behind a web server.

wget https://github.com/bastienwirtz/homer/releases/latest/download/homer.zip
unzip homer.zip
cd homer
cp assets/config.yml.dist assets/config.yml
npx serve # or python -m http.server 8010 or apache, nginx ...

Build manually

# Using yarn (recommended)
yarn install
yarn build

# **OR** Using npm
npm install
npm run build

Then your dashboard is ready to use in the /dist directory.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].