Skip to content

Commit d6d2226

Browse files
Sync docs from wheels@bf394a7
1 parent c9103c8 commit d6d2226

File tree

2 files changed

+49
-5
lines changed

2 files changed

+49
-5
lines changed

docs/3.1.0/guides/command-line-tools/cli-overview.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,32 @@ wheels security scan
118118

119119
## Getting Started
120120

121-
1. **Install CommandBox** (if not already installed):
121+
### Option A: LuCLI (Recommended)
122+
123+
1. **Install LuCLI**:
124+
```bash
125+
# macOS
126+
brew install lucli
127+
128+
# Windows
129+
choco install lucli
130+
```
131+
132+
2. **Install Wheels module**:
133+
```bash
134+
lucli modules install wheels
135+
```
136+
137+
3. **Create Your First App**:
138+
```bash
139+
wheels new myapp
140+
cd myapp
141+
wheels start
142+
```
143+
144+
### Option B: CommandBox
145+
146+
1. **Install CommandBox**:
122147
```bash
123148
# macOS
124149
brew install commandbox

docs/3.1.0/guides/command-line-tools/quick-start.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,32 @@ Get up and running with Wheels CLI in minutes.
1010

1111
## Prerequisites
1212

13-
- CommandBox 5.0+
14-
- Java 8+
13+
- **LuCLI** (recommended) or CommandBox 5.0+
1514
- Database (MySQL, PostgreSQL, SQL Server, or H2)
1615

1716
## Installation
1817

19-
### Install CommandBox
18+
### Option A: LuCLI (Recommended)
19+
20+
LuCLI is faster (< 1s startup), lighter (~40 MB), and includes built-in MCP support for AI editors.
21+
22+
```bash
23+
# macOS
24+
brew install lucli
25+
26+
# Windows
27+
choco install lucli
28+
29+
# Manual (any OS) — download from https://github.com/cybersonic/LuCLI/releases
30+
```
31+
32+
Then install the Wheels module:
33+
34+
```bash
35+
lucli modules install wheels
36+
```
37+
38+
### Option B: CommandBox
2039

2140
```bash
2241
# macOS
@@ -31,7 +50,7 @@ sudo apt-get update && sudo apt-get install commandbox
3150
choco install commandbox
3251
```
3352

34-
### Install Wheels CLI
53+
Then install the Wheels CLI module:
3554

3655
```bash
3756
box install wheels-cli

0 commit comments

Comments
 (0)