HomeHub: Your Private, Self-Hosted Family Utility Dashboard
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
HomeHub is a private, lightweight, and self-hosted web application designed to be your family's all-in-one dashboard. It transforms any computer, even a Raspberry Pi, into a central hub for managing daily household activities, offering features like shared notes, shopping lists, and expense tracking. With no login required and a focus on privacy, all your data remains on your local network, ensuring no cloud dependency or tracking.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
HomeHub is a private, lightweight, and self-hosted web application designed to be your family's all-in-one dashboard. It transforms any computer, even a Raspberry Pi, into a central hub for managing daily household activities. With no login required and a focus on privacy, all your data remains on your local network, ensuring no cloud dependency or tracking. It's built to be intuitive and accessible for every family member, offering a clean interface that works seamlessly across various devices.
Installation
Getting HomeHub up and running is straightforward, especially using Docker.
- Configuration: Begin by copying
config-example.ymltoconfig.yml. This file allows you to customize your hub's name, add family members, and toggle various features. You can also set an optional password for site access.
instance_name: "My Home Hub"
password: "" #leave blank for password less access
admin_name: "Administrator"
feature_toggles:
shopping_list: true
media_downloader: true
# ... other toggles
family_members:
- Mom
- Dad
# ... other members
- Run with Docker Compose: Utilize the provided
compose.ymlfile for a quick setup.
# compose.yml
services:
homehub:
container_name: homehub
image: ghcr.io/surajverma/homehub:latest
ports:
- "5000:5000" #app listens internally on port 5000
environment:
- FLASK_ENV=production
- SECRET_KEY=${SECRET_KEY:-} # set via .env; falls back to random if not provided
volumes:
- ./uploads:/app/uploads
- ./media:/app/media
- ./pdfs:/app/pdfs
- ./data:/app/data
- ./config.yml:/app/config.yml:ro
Execute the following command in your terminal:
docker compose up -d
Once running, access HomeHub by navigating to http://localhost:5000 in your web browser.
Examples
HomeHub comes packed with a variety of useful tools to streamline family life:
- Shared Notes: A simple space for quick notes visible to everyone.
- Shopping List: A collaborative list with history-based suggestions.
- Chore Tracker: Manage household tasks efficiently.
- Expense Tracker: A powerful tool for tracking family spending, including recurring bills.
- Media Downloader: Save videos or music from popular sites directly to your server.
- Shared Cloud: Easily upload and share files across your home network.
- Calendar & Reminders: Keep track of important dates and events.
- Who's Home?: See at a glance which family members are currently at home.
- Recipe Book, Expiry Tracker, URL Shortener, PDF Compressor, Weather Updates, and QR Code Generator: Additional utilities to enhance your home management.
Why Use HomeHub?
HomeHub stands out for several compelling reasons:
- Privacy and Self-Hosted: All your sensitive family data remains on your network. There is no reliance on external cloud services, ensuring maximum privacy and control.
- Simple and Lightweight: It's designed to run efficiently on minimal hardware, making it suitable for devices like a Raspberry Pi, without consuming excessive resources.
- Family-Focused Design: The interface is intuitive and user-friendly, catering to all technical skill levels within a family.
- Customizable: You have the flexibility to enable or disable features and even personalize the color theme directly through the
config.ymlfile, tailoring the experience to your family's specific needs.
Links
- GitHub Repository: https://github.com/surajverma/homehub
Related repositories
Similar repositories that may be relevant next.

Osaurus: Redirecting to the New Home of the AI Project
March 7, 2026
The `dinoki-ai/osaurus` GitHub repository serves as a crucial redirect, guiding users to the official and actively maintained Osaurus project. All future development, issue tracking, and releases for Osaurus are now hosted at `osaurus-ai/osaurus`. This ensures that users can easily find the latest version and contribute to the project.
reubah: A Web-Based Universal File Converter and Image Processor
March 4, 2026
reubah is an intuitive web-based tool designed for efficient image processing and document conversion. It offers a simple interface to handle a wide array of file formats, providing features like dark mode and batch processing. This versatile application ensures isolated processing and immediate delivery without storing user files.

htmx: High Power Tools for HTML for Modern Web Interfaces
December 1, 2025
htmx is a lightweight, dependency-free JavaScript library that extends HTML with powerful capabilities for building modern user interfaces. It allows developers to access AJAX, CSS Transitions, WebSockets, and Server Sent Events directly in HTML using attributes, simplifying web development by completing HTML as a hypertext.

Horilla: A Free and Open Source HR and CRM Software
November 26, 2025
Horilla is a comprehensive, free, and open-source Human Resource Management System (HRMS) and Customer Relationship Management (CRM) software. Designed to streamline HR processes and enhance organizational efficiency, it offers a wide array of features from recruitment to payroll. Built with Django and Python, Horilla provides a robust solution for businesses looking to manage their human resources effectively.
Source repository
Open the original repository on GitHub.