A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.
Go to file
shamoon 49281b30c2
Fix block label translation in strelaysrv widget
2023-12-06 20:54:32 -08:00
.devcontainer Display Docker container's used memory instead of total memory 2023-03-28 19:40:09 +02:00
.github Bump actions/setup-python from 4 to 5 (#2435) 2023-12-06 09:15:14 -08:00
.vscode add mkdocs 2023-09-29 21:01:11 +03:00
docs Feature: setting for equal height cards (#2432) 2023-12-06 14:52:02 -08:00
images update readme image 2023-09-17 10:57:37 +03:00
k3d Run pre-commit hooks over existing codebase 2023-10-18 09:49:33 -07:00
public Enhancement: improve fritzbox proxy perfomance (#2429) 2023-12-05 00:44:13 -08:00
src Fix block label translation in strelaysrv widget 2023-12-06 20:54:32 -08:00
.all-contributorsrc Update .all-contributorsrc 2022-11-06 21:58:47 +02:00
.babelrc Revert "Chore: enable swc (#2311)" 2023-11-25 09:29:18 -08:00
.dockerignore Update GameDig dependency to `4.1.0` and revert compressjs fix. (#1939) 2023-09-09 06:18:38 -07:00
.editorconfig first public source commit 2022-08-24 10:44:35 +03:00
.eslintrc.json starting of widget refactoring 2022-09-25 19:43:47 +03:00
.gitignore ignore mkdocs cache 2023-09-30 14:39:51 +03:00
.pre-commit-config.yaml Add pre-commit with prettier 2023-10-18 09:49:33 -07:00
.prettierrc Add pre-commit with prettier 2023-10-18 09:49:33 -07:00
CODE_OF_CONDUCT.md Run pre-commit hooks over existing codebase 2023-10-18 09:49:33 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2023-10-18 12:49:27 -07:00
Dockerfile Remove deprecated notification 2023-10-04 23:55:03 -07:00
Dockerfile-tilt added k3d test scripts 2023-01-11 09:47:34 -06:00
LICENSE Initial commit 2022-08-24 10:29:42 +03:00
README.md Docs: Update broken links in readme 2023-10-24 14:09:56 -07:00
crowdin.yml Chore: migrate crowdin to GHA (#2421) 2023-12-03 07:33:43 -08:00
docker-entrypoint.sh Use HOMEPAGE_BUILDTIME to revalidate container restart/recreate 2023-04-04 22:55:26 -07:00
jsconfig.json Run pre-commit hooks over existing codebase 2023-10-18 09:49:33 -07:00
kubernetes.md Run pre-commit hooks over existing codebase 2023-10-18 09:49:33 -07:00
mkdocs.yml Feature: Fritz!Box Widget (#2387) 2023-11-26 20:48:54 -08:00
next-i18next.config.js Feature: add date formatting option in custom api (#2228) 2023-10-23 16:54:04 -07:00
next.config.js Chore: enable swc, again (#2385) 2023-11-25 10:25:24 -08:00
package-lock.json Feature: Implement iCal integration for calendar, improve styling (#2376) 2023-11-25 08:17:25 -08:00
package.json Feature: Implement iCal integration for calendar, improve styling (#2376) 2023-11-25 08:17:25 -08:00
pnpm-lock.yaml Feature: Implement iCal integration for calendar, improve styling (#2376) 2023-11-25 08:17:25 -08:00
postcss.config.js Run pre-commit hooks over existing codebase 2023-10-18 09:49:33 -07:00
requirements.txt Add pre-commit with prettier 2023-10-18 09:49:33 -07:00
tailwind.config.js Feature: iFrame widget (#2261) 2023-10-31 07:19:57 -07:00

README.md

A modern, fully static, fast, secure fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery.

GitHub Workflow Status (with event)     Discord     GitHub Sponsors

Features

With features like quick search, bookmarks, weather support, a wide range of integrations and widgets, an elegant and modern design, and a focus on performance, Homepage is your ideal start to the day and a handy companion throughout it.

  • Fast - The site is statically generated at build time for instant load times.
  • Secure - All API requests to backend services are proxied, keeping your API keys hidden. Constantly reviewed for security by the community.
  • For Everyone - Images built for AMD64, ARM64, ARMv7, and ARMv6.
  • Full i18n - Support for over 40 languages.
  • Service & Web Bookmarks - Add custom links to the homepage.
  • Docker Integration - Container status and stats. Automatic service discovery via labels.
  • Service Integration - Over 100 service integrations, including popular starr and self-hosted apps.
  • Information & Utility Widgets - Weather, time, date, search, and more.
  • And much more...

Docker Integration

Homepage has built-in support for Docker, and can automatically discover and add services to the homepage based on labels. See the Docker page for more information.

Service Widgets

Homepage also has support for over 100 3rd party services, including all popular starr apps, and most popular self-hosted apps. Some examples include: Radarr, Sonarr, Lidarr, Bazarr, Ombi, Tautulli, Plex, Jellyfin, Emby, Transmission, qBittorrent, Deluge, Jackett, NZBGet, SABnzbd, etc. As well as service integrations, Homepage also has a number of information providers, sourcing information from a variety of external 3rd party APIs. See the Service page for more information.

Information Widgets

Homepage has built-in support for a number of information providers, including weather, time, date, search, glances and more. System and status information presented at the top of the page. See the Information Providers page for more information.

Customization

Homepage is highly customizable, with support for custom themes, custom CSS & JS, custom layouts, formatting, localization and more. See the Settings page for more information.

Getting Started

For configuration options, examples and more, please check out the homepage documentation.

With Docker

Using docker compose:

version: "3.3"
services:
  homepage:
    image: ghcr.io/gethomepage/homepage:latest
    container_name: homepage
    environment:
      PUID: 1000 -- optional, your user id
      PGID: 1000 -- optional, your group id
    ports:
      - 3000:3000
    volumes:
      - /path/to/config:/app/config # Make sure your local config directory exists
      - /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
    restart: unless-stopped

or docker run:

docker run --name homepage \
  -e PUID=1000 \
  -e PGID=1000 \
  -p 3000:3000 \
  -v /path/to/config:/app/config \
  -v /var/run/docker.sock:/var/run/docker.sock:ro \
  --restart unless-stopped \
  ghcr.io/gethomepage/homepage:latest

With Node

First, clone the repository:

git clone https://github.com/gethomepage/homepage.git

Then install dependencies and build the production bundle (I'm using pnpm here, you can use npm or yarn if you like):

pnpm install
pnpm build

If this is your first time starting, copy the src/skeleton directory to config/ to populate initial example config files.

Finally, run the server in production mode:

pnpm start

or development mode:

pnpm dev

Configuration

Please refer to the homepage documentation website for more information. Everything you need to know about configuring Homepage is there. Please read everything carefully before asking for help, as most questions are answered there or are simple YAML configuration issues.

Development

Install NPM packages, this project uses pnpm (and so should you!):

pnpm install

Start the development server:

pnpm dev

Open http://localhost:3000 to start.

This is a Next.js application, see their documentation for more information.

Documentation

The homepage documentation is available at https://gethomepage.dev/.

Homepage uses Material for MkDocs for documentation. To run the documentation locally, first install the dependencies:

pip install -r requirements.txt

Then run the development server:

mkdocs serve # or build, to build the static site

Support & Suggestions

If you have any questions, suggestions, or general issues, please start a discussion on the Discussions page.

For bug reports, please open an issue on the Issues page.

Contributing & Contributors

Contributions are welcome! Please see the CONTRIBUTING.md file for more information.

Thanks to the over 200 contributors who have helped make this project what it is today!

Especially huge thanks to @shamoon, who has been the backbone of this community from the very start.