← Back to Showcase
Self-Hosted Product

HomeAsset Software

Self-hosted home inventory management — organized, searchable, and always available on your local network. Built entirely without cloud dependency.

HomeAsset All Items View
HomeAsset Dashboard
Add Item Interface
📦

Rich Item Management

Support for custom tags, photos taken dynamically during creation, precise storage locations, tracking serial numbers, and custom metadata fields for complex inventory.

📍

Hierarchical Locations

Organize space naturally. Build a nested tree of locations, e.g. "House → Garage → Shelf A", assigning unique icons and colors for quick visual parsing.

⚙️

Powerful Control Panel

Built with dynamic front-end settings. Efficiently categorize assets using a two-panel interface to establish tags, categories, and unified CSV Data Export workflows.

Docker

Docker Persistent Volumes

Simple docker compose up -d boot process. All SQLite data, document attachments, and item thumbnails exist safely in a mapped persistent volume on your physical host.

# docker-compose.yml configuration snapshot
services:
  homeasset:
    build: .
    ports:
      - "7745:7745"
    volumes:
      - ./data:/data
    restart: unless-stopped