Official website for YAT (Yet Another Tunnel) - Making intranet penetration simpler and more secure.
Website: https://tunnel6.com
yat.github.io/
├── docs/
│ ├── .vitepress/
│ │ └── config.js # VitePress configuration
│ ├── public/ # Static assets
│ │ └── images/
│ │
│ ├── # Main pages (in nav)
│ ├── index.md # Homepage
│ ├── features.md # Features page
│ ├── download.md # Download page
│ ├── pricing.md # Pricing page
│ ├── blog/ # Blog
│ │ └── index.md
│ │
│ ├── # Documentation
│ ├── guide/ # User guide
│ ├── developer/ # Developer docs
│ │
│ └── # Hidden pages (footer links)
│ ├── about.md
│ ├── privacy.md
│ ├── terms.md
│ └── changelog.md
│
├── package.json
└── README.md
npm install
npm run docs:dev
The site will be available at http://localhost:5173
npm run docs:build
Output will be in docs/.vitepress/dist/
npm run docs:preview
npm run docs:builddocs/.vitepress/distThe site will auto-deploy via GitHub Actions on push to main branch.
The website supports three languages:
//zh//es/Language configuration is in docs/.vitepress/config.js.
We welcome contributions! Please see our Contributing Guide for details.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.