cmssy-cli 0.10.0 → 0.10.1
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 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,6 +56,14 @@ CMSSY_WORKSPACE_ID=507f1f77bcf86cd799439011
|
|
|
56
56
|
4. Copy the token to your `.env` file
|
|
57
57
|
|
|
58
58
|
**How to get Workspace ID:**
|
|
59
|
+
|
|
60
|
+
**Option 1: From Cmssy UI (Easiest)**
|
|
61
|
+
1. Go to your workspace Settings → General
|
|
62
|
+
2. Find "Workspace Information" section at the top
|
|
63
|
+
3. Click the copy button next to Workspace ID
|
|
64
|
+
4. Add to `.env` as `CMSSY_WORKSPACE_ID`
|
|
65
|
+
|
|
66
|
+
**Option 2: Using CLI**
|
|
59
67
|
1. Run `cmssy workspaces` to list all your workspaces
|
|
60
68
|
2. Copy the ID (MongoDB ObjectId format: 24-character hex string)
|
|
61
69
|
3. Add to `.env` as `CMSSY_WORKSPACE_ID`
|
|
@@ -612,10 +620,18 @@ cmssy upload --all --workspace 507f1f77bcf86cd799439011
|
|
|
612
620
|
Run `cmssy configure` or manually add `CMSSY_API_TOKEN` to `.env`
|
|
613
621
|
|
|
614
622
|
### "Workspace ID required"
|
|
623
|
+
**Option 1: From UI**
|
|
624
|
+
1. Go to Workspace Settings → General
|
|
625
|
+
2. Copy workspace ID using the copy button
|
|
626
|
+
3. Add to `.env`: `CMSSY_WORKSPACE_ID=507f1f77bcf86cd799439011`
|
|
627
|
+
|
|
628
|
+
**Option 2: From CLI**
|
|
615
629
|
1. Run `cmssy workspaces` to list your workspaces
|
|
616
630
|
2. Copy the workspace ID (24-character hex string like `507f1f77bcf86cd799439011`)
|
|
617
631
|
3. Add to `.env`: `CMSSY_WORKSPACE_ID=507f1f77bcf86cd799439011`
|
|
618
|
-
|
|
632
|
+
|
|
633
|
+
**Option 3: Use flag**
|
|
634
|
+
- Use `--workspace 507f1f77bcf86cd799439011` flag in commands
|
|
619
635
|
|
|
620
636
|
### "Specify publish target"
|
|
621
637
|
Must use either `--marketplace` OR `--workspace` when publishing
|
package/dist/cli.js
CHANGED