Açıklama Yok

develoopeer 83c1368f98 Merge remote-tracking branch 'upstream/release/v0.7.0' 7 ay önce
.github 82b6531a07 Add funding 1 yıl önce
docs ac7f3805d4 Add custom unmarshalling for pihole queries stats 7 ay önce
internal 83c1368f98 Merge remote-tracking branch 'upstream/release/v0.7.0' 7 ay önce
.dockerignore 6de0f73ec1 Fix build breaking because of missing build dir 1 yıl önce
.gitignore fcda017c39 Update docker containers widget 8 ay önce
.goreleaser.yaml 9843b4d218 Fix armv7 docker image 11 ay önce
Dockerfile e5106c0704 Merge branch 'release/v0.7.0' into main 8 ay önce
Dockerfile.goreleaser e5106c0704 Merge branch 'release/v0.7.0' into main 8 ay önce
LICENSE ec8ba40cf0 Initial commit 1 yıl önce
README.md fcda017c39 Update docker containers widget 8 ay önce
go.mod 83c1368f98 Merge remote-tracking branch 'upstream/release/v0.7.0' 7 ay önce
go.sum 83c1368f98 Merge remote-tracking branch 'upstream/release/v0.7.0' 7 ay önce
main.go ec8ba40cf0 Initial commit 1 yıl önce

README.md

What if you could see everything at a...

Glance

InstallConfigurationPreconfigured pagesThemesDiscord

example homepage

Features

Various widgets

  • RSS feeds
  • Subreddit posts
  • Weather
  • Bookmarks
  • Hacker News
  • Lobsters
  • Latest YouTube videos from specific channels
  • Clock
  • Calendar
  • Stocks
  • iframe
  • Twitch channels & top games
  • GitHub releases
  • Repository overview
  • Docker containers
  • Site monitor
  • Search box

Themeable

multiple color schemes example

Optimized for mobile devices

mobile device previews

Fast and lightweight

  • Minimal JS, no bloated frameworks
  • Very few dependencies
  • Single, easily distributed <15mb binary and just as small docker container
  • All requests are parallelized, uncached pages usually load within ~1s (depending on internet speed and number of widgets)

Configuration

Checkout the configuration docs to learn more. A preconfigured page is also available to get you started quickly.

Installation

[!CAUTION]

The project is under active development, expect things to break every once in a while.

Manual

Checkout the releases page for available binaries. You can place the binary inside /opt/glance/ and have it start with your server via a systemd service. To specify a different path for the config file use the --config option:

/opt/glance/glance --config /etc/glance.yml

Docker

[!IMPORTANT]

Make sure you have a valid glance.yml file in the same directory before running the container.

docker run -d -p 8080:8080 \
  -v ./glance.yml:/app/glance.yml \
  -v /etc/timezone:/etc/timezone:ro \
  -v /etc/localtime:/etc/localtime:ro \
  glanceapp/glance

Or if you prefer docker compose:

services:
  glance:
    image: glanceapp/glance
    volumes:
      - ./glance.yml:/app/glance.yml
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    ports:
      - 8080:8080
    restart: unless-stopped

Building from source

Requirements: Go >= v1.22

To build:

go build -o build/glance .

To run:

go run .

Building Docker image

Build the image:

Make sure to replace "owner" with your name or organization.

docker build -t owner/glance:latest .

Push the image to your registry:

docker push owner/glance:latest