@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 CHANGED
@@ -235,11 +235,12 @@ npx reve --help
235
235
 
236
236
  #### **🔹 Basic Commands**
237
237
 
238
- | Command | Description |
239
- | -------------------- | ------------------------------------------------------------------------------- |
240
- | `reve start` | **Quick Start**: Complete 6-step setup process and start environment management |
241
- | `reve login [email]` | Login to SkyReve platform |
242
- | `reve project` | Select/create SkyReve project to work with |
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 6-step setup process (Quick Start)
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 6 steps:
285
+ This **Quick Start** command automatically performs the following 5 steps:
282
286
 
283
- 1. **🔐 Step 1/6**: Login to SkyReve platform
284
- 2. **📁 Step 2/6**: Select/create a project
285
- 3. **🐙 Step 3/6**: Login to GitHub
286
- 4. **🔧 Step 4/6**: Install GitHub App
287
- 5. **📦 Step 5/6**: Link GitHub branch to Reve environment
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 (6-step process)
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 6-step setup process:
48
+ This command will guide you through a complete 5-step setup process:
46
49
 
47
- 1. **🔐 Step 1/6**: Login to SkyReve platform
48
- 2. **📁 Step 2/6**: Select/create a project
49
- 3. **🐙 Step 3/6**: Login to GitHub
50
- 4. **🔧 Step 4/6**: Install GitHub App
51
- 5. **📦 Step 5/6**: Link GitHub branch to Reve environment
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 6-step setup process |
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
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyreve/reve",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Reve - A command line tool for Reve platform",
5
5
  "main": "index.js",
6
6
  "scripts": {