mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-10 05:15:35 +08:00
mirror
f0991a5dbf
Bumps [@tabler/icons-solidjs](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-solidjs) from 3.16.0 to 3.17.0. - [Release notes](https://github.com/tabler/tabler-icons/releases) - [Commits](https://github.com/tabler/tabler-icons/commits/v3.17.0/packages/icons-solidjs) --- updated-dependencies: - dependency-name: "@tabler/icons-solidjs" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.github | ||
.husky | ||
.vscode | ||
docs | ||
public | ||
src | ||
.commitlintrc.yml | ||
.dockerignore | ||
.gitignore | ||
.lintstagedrc.yml | ||
.prettierignore | ||
.prettierrc | ||
auto-imports.d.ts | ||
Caddyfile | ||
CHANGELOG.md | ||
Dockerfile | ||
eslint.config.mjs | ||
index.html | ||
LICENSE | ||
package.json | ||
pnpm-lock.yaml | ||
postcss.config.js | ||
pwa-assets.config.ts | ||
README.md | ||
tailwind.config.ts | ||
tsconfig.json | ||
vite.config.ts |
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
external-controller: 0.0.0.0:9090
Use pre-built assets from gh-pages branch
First time setup
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
external-ui: /etc/mihomo/ui
Update
git -C /etc/mihomo/ui pull -r
Run inside Docker
docker cli
Running
docker run -d --restart always -p 80:80 --name metacubexd ghcr.io/metacubex/metacubexd
Update and Restart
docker pull ghcr.io/metacubex/metacubexd && docker restart metacubexd
docker-compose.yml
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
docker compose up -d
Update and Restart
docker compose pull && docker compose up -d
Build locally
Install npm dependencies
pnpm install
Build artifacts
pnpm build
Serve static files
pnpm serve