Skip to content

Commit e6aeaca

Browse files
akoclaude
andcommitted
fix: replace nonexistent install.sh with actual installation methods
The quickstart referenced a curl install script that doesn't exist. Replace with the three actual installation methods: Playground Codespace (zero install), binary download from GitHub Releases, and go install from source. Link to the full installation page for Dev Container and other options. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9923da9 commit e6aeaca

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

docs-site/src/tutorial/quickstart.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,32 @@ Get from zero to modifying a Mendix project in 5 minutes. No prior MDL knowledge
44

55
## 1. Install mxcli
66

7+
**Option A: Zero install (Playground)**
8+
9+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/mendixlabs/mxcli-playground)
10+
11+
Open the [mxcli Playground](https://github.com/mendixlabs/mxcli-playground) in a Codespace -- mxcli, a sample project, and example scripts are pre-installed. Skip to step 3.
12+
13+
**Option B: Binary download**
14+
15+
Download from the [GitHub Releases page](https://github.com/mendixlabs/mxcli/releases) and extract:
16+
717
```bash
818
# macOS / Linux
9-
curl -fsSL https://mxcli.org/install.sh | bash
19+
tar xzf mxcli_<platform>.tar.gz
20+
sudo mv mxcli /usr/local/bin/
21+
```
22+
23+
**Option C: Build from source**
1024

11-
# Or with Go
25+
```bash
1226
go install github.com/mendixlabs/mxcli/cmd/mxcli@latest
1327
```
1428

1529
Verify: `mxcli --version` should print the version number.
1630

31+
See [Installation](installation.md) for all options including Dev Containers.
32+
1733
## 2. Open your project
1834

1935
```bash

0 commit comments

Comments
 (0)