@skyreve/reve 1.0.23 → 1.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -14
- package/README.npm.md +11 -8
- package/bin/darwin/reve +0 -0
- package/bin/linux/reve +0 -0
- package/bin/reve +0 -0
- package/bin/windows/reve.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -235,11 +235,12 @@ npx reve --help
|
|
|
235
235
|
|
|
236
236
|
#### **🔹 Basic Commands**
|
|
237
237
|
|
|
238
|
-
| Command
|
|
239
|
-
|
|
|
240
|
-
| `reve start`
|
|
241
|
-
| `reve
|
|
242
|
-
| `reve
|
|
238
|
+
| Command | Description |
|
|
239
|
+
| --------------------- | ------------------------------------------------------------------------------- |
|
|
240
|
+
| `reve start` | **Quick Start**: Complete 5-step setup process and start environment management |
|
|
241
|
+
| `reve start --force` | Force all 5 setup steps even if already configured |
|
|
242
|
+
| `reve login [email]` | Login to SkyReve platform |
|
|
243
|
+
| `reve project` | Select/create SkyReve project to work with |
|
|
243
244
|
|
|
244
245
|
#### **🔹 Environment Management Commands (`reve env`)**
|
|
245
246
|
|
|
@@ -274,18 +275,20 @@ npx reve --help
|
|
|
274
275
|
#### **First-time Setup (Recommended)**
|
|
275
276
|
|
|
276
277
|
```bash
|
|
277
|
-
# 1. Complete
|
|
278
|
+
# 1. Complete 5-step setup process (Quick Start)
|
|
278
279
|
reve start
|
|
280
|
+
|
|
281
|
+
# Force all steps even if already configured
|
|
282
|
+
reve start --force
|
|
279
283
|
```
|
|
280
284
|
|
|
281
|
-
This **Quick Start** command automatically performs the following
|
|
285
|
+
This **Quick Start** command automatically performs the following 5 steps:
|
|
282
286
|
|
|
283
|
-
1. **🔐 Step 1/
|
|
284
|
-
2. **📁 Step 2/
|
|
285
|
-
3. **🐙 Step 3/
|
|
286
|
-
4. **🔧 Step 4/
|
|
287
|
-
5. **📦 Step 5/
|
|
288
|
-
6. **🚀 Step 6/6**: Start syncing Reve environment
|
|
287
|
+
1. **🔐 Step 1/5**: Login to SkyReve platform
|
|
288
|
+
2. **📁 Step 2/5**: Select/create a project
|
|
289
|
+
3. **🐙 Step 3/5**: Login to GitHub
|
|
290
|
+
4. **🔧 Step 4/5**: Install GitHub App
|
|
291
|
+
5. **📦 Step 5/5**: Link GitHub branch to Reve environment
|
|
289
292
|
|
|
290
293
|
After completion, you'll see: `🎉 All setup steps completed successfully!`
|
|
291
294
|
|
|
@@ -598,7 +601,7 @@ npm unpublish @skyreve/reve@<version>
|
|
|
598
601
|
reve-cli/
|
|
599
602
|
├── cmd/ # Command definitions
|
|
600
603
|
│ ├── root.go # Root command with logging and config
|
|
601
|
-
│ ├── start.go # Complete setup start command (
|
|
604
|
+
│ ├── start.go # Complete setup start command (5-step process)
|
|
602
605
|
│ ├── login.go # SkyReve platform login with email/password
|
|
603
606
|
│ ├── project.go # Project selection/creation
|
|
604
607
|
│ ├── env.go # Environment management command group
|
package/README.npm.md
CHANGED
|
@@ -40,16 +40,18 @@ The easiest way to get started with Reve is using the **Quick Start** command:
|
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
reve start
|
|
43
|
+
|
|
44
|
+
# Force all steps even if already configured
|
|
45
|
+
reve start --force
|
|
43
46
|
```
|
|
44
47
|
|
|
45
|
-
This command will guide you through a complete
|
|
48
|
+
This command will guide you through a complete 5-step setup process:
|
|
46
49
|
|
|
47
|
-
1. **🔐 Step 1/
|
|
48
|
-
2. **📁 Step 2/
|
|
49
|
-
3. **🐙 Step 3/
|
|
50
|
-
4. **🔧 Step 4/
|
|
51
|
-
5. **📦 Step 5/
|
|
52
|
-
6. **🚀 Step 6/6**: Start syncing Reve environment
|
|
50
|
+
1. **🔐 Step 1/5**: Login to SkyReve platform
|
|
51
|
+
2. **📁 Step 2/5**: Select/create a project
|
|
52
|
+
3. **🐙 Step 3/5**: Login to GitHub
|
|
53
|
+
4. **🔧 Step 4/5**: Install GitHub App
|
|
54
|
+
5. **📦 Step 5/5**: Link GitHub branch to Reve environment
|
|
53
55
|
|
|
54
56
|
After completion, you'll see: `🎉 All setup steps completed successfully!`
|
|
55
57
|
|
|
@@ -59,7 +61,8 @@ After completion, you'll see: `🎉 All setup steps completed successfully!`
|
|
|
59
61
|
|
|
60
62
|
| Command | Description |
|
|
61
63
|
| ------------------------ | ----------------------------------------------------------------------- |
|
|
62
|
-
| `reve start` | **Quick Start**: Complete
|
|
64
|
+
| `reve start` | **Quick Start**: Complete 5-step setup process |
|
|
65
|
+
| `reve start --force` | Force all 5 setup steps even if already configured |
|
|
63
66
|
| `reve login [email]` | Login to SkyReve platform |
|
|
64
67
|
| `reve project` | Select/create SkyReve project |
|
|
65
68
|
| `reve env` | Start interactive environment management |
|
package/bin/darwin/reve
CHANGED
|
Binary file
|
package/bin/linux/reve
CHANGED
|
Binary file
|
package/bin/reve
CHANGED
|
Binary file
|
package/bin/windows/reve.exe
CHANGED
|
Binary file
|