- 🎨 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
Try daed directly in your browser without installation:
⚠️ 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.
Please refer to the Quick Start Guide to start using daed right away!
Pull the prebuilt image:
docker pull ghcr.io/daeuniverse/daedRun 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:latestOr 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/daeddocker compose up -dAccess the dashboard at http://localhost:2023.
# Clone the repository
git clone https://github.com/daeuniverse/daed.git
cd daed
# Install dependencies
pnpm install
# Start development server
pnpm dev| Command | Description |
|---|---|
pnpm dev |
Start development server |
pnpm build |
Build for production |
pnpm lint |
Lint and fix code |
pnpm codegen |
Generate GraphQL types |
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! ❤️
This project is dual licensed:
- Frontend (daed): MIT License
- Backend (dae-wing): AGPL-3.0 License




