From 9f6846a14d9c7117b45e7683f956c68fb3ade319 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 16 Aug 2026 03:04:03 +0800 Subject: feat(website): add Mingling CLI download page --- README.md | 7 +- dist/index.html | 539 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 544 insertions(+), 2 deletions(-) create mode 100644 dist/index.html diff --git a/README.md b/README.md index 4310891..a5d73e7 100644 --- a/README.md +++ b/README.md @@ -112,8 +112,10 @@ tag = "unreleased" features = [] ``` -> [!NOTE] -> To learn more, check out [Writing with Mingling](https://github.com/mingling-rs/mingling/blob/main/GETTING-STARTED.md) +To learn more, check out [Writing with Mingling](https://github.com/mingling-rs/mingling/blob/main/GETTING-STARTED.md) + +> [!Note] +> You can also use the `mling` scaffolding tool to build, check, and manage your project [Download](https://mingling-rs.github.io/mingling/dist) | [About](https://github.com/mingling-rs/mingling/tree/main/mingling_cli) ## Roadmap @@ -160,6 +162,7 @@ See [LICENSE-MIT](LICENSE-MIT) or [LICENSE-APACHE](LICENSE-APACHE) file for deta **To learn more, check out the following links:** +- ⚡ Mingling CLI - [About Mling](https://mingling-rs.github.io/mingling/dist) - 📦 Repo - [Github](https://github.com/mingling-rs/mingling) | [Gitee](https://gitee.com/mingling-rs/mingling) | [Origin](https://catilgrass.cn/mingling.git) - 🚪 Mainpage - [Github](https://mingling-rs.github.io/mingling/) | [crates.io](https://crates.io/crates/mingling) - 💡 Examples - [Github](https://mingling-rs.github.io/mingling/docs/examples.html) diff --git a/dist/index.html b/dist/index.html new file mode 100644 index 0000000..6fcdb0b --- /dev/null +++ b/dist/index.html @@ -0,0 +1,539 @@ + + + + + + Mling CLI — Download + + + + + + + + + + +
+

Mingling CLI

+

+ The command-line companion for scaffolding, managing, and + updating Mingling projects. Install it once, then let + mling update keep it fresh. +

+
+ +
+
+

How to use

+

Some commands you will use every day:

+
+
+ mling proj-init 0.4@basic +

Initialize a project

+
+
+ mling install +

Install the project to the Mingling package list

+
+
+ mling pkg-enable your-cli@0.1.0 +

Enable the specified package

+
+
+ mling lint +

Mingling Linter

+
+
+ mling -h +

Show help messages

+
+
+ mling update +

Update mling to the latest version

+
+
+
+
+ +
+
+

Download

+

+ Choose the package for your platform and download the latest + build. +

+
+
+ + Linux + mling-linux.tar.gz + SHA256 +
+
+ + Windows + mling-win.tar.gz + SHA256 +
+
+ + macOS + mling-mac.tar.gz + SHA256 +
+
+ +

+ Packages are built on every push to + main + and published here automatically. +

+
+
+ +
+
+

Install

+

+ Extract the package and load the bundled environment script + — it adds bin/ to PATH and enables + shell completion. +

+
+
# Linux / macOS (zsh, bash, fish)
+tar -xzf mling-linux.tar.gz
+source load_mling.sh
+
+# Windows (PowerShell)
+tar -xzf mling-win.tar.gz
+.\load_mling.ps1
+
+
+
+ +
+
+

Update

+

+ mling can update itself. It downloads from this + page by default, verifies the sha256 checksum, and applies + the new version on your next invocation. +

+
+
# Update to the latest build
+mling update
+
+# Point it at a custom mirror if needed
+mling cfg update-url https://mingling-rs.github.io/mingling/dist
+mling update
+
+
+
+ + + + -- cgit