mirror
Go to file
dependabot[bot] 191cb6e4c1
build(deps): bump @tanstack/solid-virtual from 3.10.5 to 3.10.6 (#962)
Bumps [@tanstack/solid-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/solid-virtual) from 3.10.5 to 3.10.6.
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Commits](https://github.com/TanStack/virtual/commits/v3.10.6/packages/solid-virtual)

---
updated-dependencies:
- dependency-name: "@tanstack/solid-virtual"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-08-30 18:34:46 +08:00
.github build(deps): bump docker/build-push-action from 5 to 6 (#771) 2024-06-18 09:28:28 +08:00
.husky feat: bun -> pnpm 2024-04-08 17:34:57 +08:00
.vscode chore: eslint flat config 2024-04-16 17:35:12 +08:00
docs docs: update example docker-compose.yml 2024-03-20 16:18:18 +08:00
public feat(pwa): add pwa shortcut icon, closes #201 2023-09-17 13:10:53 +08:00
src feat: optimize setup form (#960) 2024-08-29 19:17:29 +08:00
.commitlintrc.yml docs: add MIT license 2023-08-28 00:13:00 +08:00
.dockerignore feat: publish docker image 2023-08-30 00:40:47 +08:00
.gitignore refactor: skipLibCheck 2023-09-03 20:31:13 +08:00
.lintstagedrc.yml chore: add eslint to enforce code quality 2023-09-03 15:30:56 +08:00
.prettierignore chore: use bun instead of pnpm as package manager 2024-02-01 18:12:04 +08:00
.prettierrc style: set endOfLine as lf instead of crlf 2023-09-14 16:53:33 +08:00
auto-imports.d.ts fix: respect system ui font & better looking (maybe) for proxy card (#844) 2024-07-23 20:58:03 +08:00
Caddyfile feat: publish docker image 2023-08-30 00:40:47 +08:00
CHANGELOG.md chore(main): release 1.147.0 (#961) 2024-08-29 20:33:34 +08:00
Dockerfile build(docker): fix Dockerfile FromAsCasing lint issue 2024-08-22 16:57:38 +08:00
eslint.config.mjs chore: eslint flat config 2024-04-16 17:35:12 +08:00
index.html feat(pwa): add pwa shortcut icon, closes #201 2023-09-17 13:10:53 +08:00
LICENSE docs: add MIT license 2023-08-28 00:13:00 +08:00
package.json build(deps): bump @tanstack/solid-virtual from 3.10.5 to 3.10.6 (#962) 2024-08-30 18:34:46 +08:00
pnpm-lock.yaml build(deps): bump @tanstack/solid-virtual from 3.10.5 to 3.10.6 (#962) 2024-08-30 18:34:46 +08:00
postcss.config.js chore: initial commit 2023-08-27 15:34:12 +08:00
pwa-assets.config.ts feat(pwa): add pwa shortcut icon, closes #201 2023-09-17 13:10:53 +08:00
README.md feat: hidden api & remove domain unmaintained (#939) 2024-08-22 16:43:23 +08:00
tailwind.config.ts fix: respect system ui font & better looking (maybe) for proxy card (#844) 2024-07-23 20:58:03 +08:00
tsconfig.json refactor: skipLibCheck 2023-09-03 20:31:13 +08:00
vite.config.ts fix: closes #685 2024-04-23 13:56:12 +08:00

metacubexd

Mihomo Dashboard, The Official One, XD

preview-overview

pr-closed last-commit build downloads license

Preview

preview-overview preview-connections

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

Credits