├── .github └── workflows │ └── deploy.yaml ├── .gitignore ├── .vitepress ├── config.ts └── theme │ ├── index.ts │ └── style.scss ├── CNAME ├── README.md ├── docs ├── en │ └── guide │ │ └── index.md └── zh │ ├── download │ ├── android.md │ ├── asus.md │ ├── docker.md │ ├── index.md │ ├── ios.md │ └── openwrt.md │ ├── guide │ └── index.md │ └── install │ └── index.md ├── package.json ├── pnpm-lock.yaml └── public ├── api ├── advertises.json ├── android.json ├── announcement.json ├── dockerApplication.json ├── ios.json ├── posts.json ├── shops.json └── test.json ├── img ├── cover1.png ├── cover2.png ├── doge.png ├── favico.ico ├── favico.svg └── logo.jpg ├── index.css ├── index.html └── index_mobile.css /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .vitepress/cache 4 | dist -------------------------------------------------------------------------------- /.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/.vitepress/config.ts -------------------------------------------------------------------------------- /.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /.vitepress/theme/style.scss: -------------------------------------------------------------------------------- 1 | img.VPImage.logo { 2 | height: 48px; 3 | } -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.routerdog.top -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/README.md -------------------------------------------------------------------------------- /docs/en/guide/index.md: -------------------------------------------------------------------------------- 1 | ### todo -------------------------------------------------------------------------------- /docs/zh/download/android.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh/download/asus.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh/download/docker.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh/download/index.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh/download/ios.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh/download/openwrt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/zh/guide/index.md: -------------------------------------------------------------------------------- 1 | ### todo -------------------------------------------------------------------------------- /docs/zh/install/index.md: -------------------------------------------------------------------------------- 1 | ##### todo -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/api/advertises.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /public/api/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/api/android.json -------------------------------------------------------------------------------- /public/api/announcement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/api/announcement.json -------------------------------------------------------------------------------- /public/api/dockerApplication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/api/dockerApplication.json -------------------------------------------------------------------------------- /public/api/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/api/ios.json -------------------------------------------------------------------------------- /public/api/posts.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /public/api/shops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/api/shops.json -------------------------------------------------------------------------------- /public/api/test.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /public/img/cover1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/img/cover1.png -------------------------------------------------------------------------------- /public/img/cover2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/img/cover2.png -------------------------------------------------------------------------------- /public/img/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/img/doge.png -------------------------------------------------------------------------------- /public/img/favico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/img/favico.ico -------------------------------------------------------------------------------- /public/img/favico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/img/favico.svg -------------------------------------------------------------------------------- /public/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/img/logo.jpg -------------------------------------------------------------------------------- /public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/index.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/index.html -------------------------------------------------------------------------------- /public/index_mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carseason/routerdog/HEAD/public/index_mobile.css --------------------------------------------------------------------------------