README.md

December 4, 2025 ยท View on GitHub

daed logo

daed

A modern web dashboard for dae

Build Status Release License Pull Requests

Features โ€ข Getting Started โ€ข Development โ€ข Contributing โ€ข License


๐Ÿ“ธ Screenshots

Desktop Screenshots
SetupOrchestrate
setuporchestrate
Mobile Screenshots
SetupOrchestrate
setuporchestrate

โœจ Features

  • ๐ŸŽจ Beautiful UI โ€” Modern, intuitive interface with light/dark mode support
  • โŒจ๏ธ Keyboard First โ€” Built-in keyboard navigation and shortcuts for power users
  • ๐Ÿ“ฑ Responsive โ€” Fully mobile-friendly design
  • ๐Ÿš€ Fast โ€” Built with React and optimized for performance

๐ŸŒ Online Demo

Try daed directly in your browser without installation:

๐Ÿ”— daeuniverse.github.io/daed

โš ๏ธ Important: Since GitHub Pages uses HTTPS, your dae-wing backend must also be served over HTTPS. Browsers block mixed content (HTTPS page connecting to HTTP backend). Configure a reverse proxy with TLS or use a self-signed certificate for local development.

๐Ÿš€ Getting Started

Please refer to the Quick Start Guide to start using daed right away!

๐Ÿณ Docker Deployment

Pull the prebuilt image:

docker pull ghcr.io/daeuniverse/daed

Run the container:

docker run -d \
    --privileged \
    --network=host \
    --pid=host \
    --restart=always \
    -v /sys:/sys \
    -v /etc/daed:/etc/daed \
    --name=daed \
    ghcr.io/daeuniverse/daed:latest

Or use Docker Compose:

# docker-compose.yml
services:
  daed:
    image: ghcr.io/daeuniverse/daed
    container_name: daed
    privileged: true
    network_mode: host
    pid: host
    restart: always
    volumes:
      - /sys:/sys
      - /etc/daed:/etc/daed
docker compose up -d

Access the dashboard at http://localhost:2023.

๐Ÿ’ป Development

Prerequisites

Setup

# Clone the repository
git clone https://github.com/daeuniverse/daed.git
cd daed

# Install dependencies
pnpm install

# Start development server
pnpm dev

Available Scripts

CommandDescription
pnpm devStart development server
pnpm buildBuild for production
pnpm lintLint and fix code
pnpm codegenGenerate GraphQL types

๐Ÿค Contributing

Contributions are welcome! Whether it's bug reports, feature requests, or pull requests โ€” all are appreciated.

Please read our Contributing Guide before submitting a PR.

Special thanks to all contributors! โค๏ธ

Contributors

๐Ÿ“„ License

This project is dual licensed:


Made with โค๏ธ by @daeuniverse