https://github.com/MetaCubeX/metacubexd
Mihomo Dashboard, The Official One, XD
https://github.com/MetaCubeX/metacubexd
daisyui dashboard docker solidjs
Last synced: about 1 year ago
JSON representation
Mihomo Dashboard, The Official One, XD
- Host: GitHub
- URL: https://github.com/MetaCubeX/metacubexd
- Owner: MetaCubeX
- License: mit
- Created: 2023-07-11T04:04:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-21T09:13:53.000Z (about 1 year ago)
- Last Synced: 2025-03-21T10:32:11.512Z (about 1 year ago)
- Topics: daisyui, dashboard, docker, solidjs
- Language: TypeScript
- Homepage:
- Size: 12.1 MB
- Stars: 2,096
- Watchers: 16
- Forks: 312
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# metacubexd
Mihomo Dashboard, The Official One, XD






## Preview


## Published Official Links
GH Pages: https://metacubex.github.io/metacubexd
Cloudflare Pages: https://metacubexd.pages.dev
## Usage
### Enable external-controller in your config file
```yaml
external-controller: 0.0.0.0:9090
```
### Use pre-built assets from gh-pages branch
> First time setup
```shell
git clone https://github.com/metacubex/metacubexd.git -b gh-pages /etc/mihomo/ui
```
Make sure you have external-ui directory set correctly in your config file
```yaml
external-ui: /etc/mihomo/ui
```
> Update
```shell
git -C /etc/mihomo/ui pull -r
```
### Run inside Docker
> docker cli
Running
```shell
docker run -d --restart always -p 80:80 --name metacubexd ghcr.io/metacubex/metacubexd
```
Update and Restart
```shell
docker pull ghcr.io/metacubex/metacubexd && docker restart metacubexd
```
> docker-compose.yml
```yaml
version: '3'
services:
metacubexd:
container_name: metacubexd
image: ghcr.io/metacubex/metacubexd
restart: always
ports:
- '80:80'
# optional
meta:
container_name: meta
image: docker.io/metacubex/mihomo:Alpha
restart: always
pid: host
ipc: host
network_mode: host
cap_add:
- ALL
volumes:
- ./config.yaml:/root/.config/mihomo
- /dev/net/tun:/dev/net/tun
```
Running
```shell
docker compose up -d
```
Update and Restart
```shell
docker compose pull && docker compose up -d
```
### Build locally
> Install npm dependencies
```shell
pnpm install
```
> Build artifacts
```shell
pnpm build
```
> Serve static files
```shell
pnpm serve
```
## Credits
- [SolidJS](https://github.com/solidjs/solid)
- [daisyUI](https://github.com/saadeghi/daisyui)