Skip to content

Commit 5ccf433

Browse files
authored
fix(cli): point bm cloud setup hint at bm cloud sync-setup (#780)
Signed-off-by: Drew Cain <groksrc@gmail.com>
1 parent b4bf14e commit 5ccf433

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/cloud-cli.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ bm project add research --cloud
113113
bm project add research --cloud --local-path ~/Documents/research
114114

115115
# Or configure sync for existing project
116-
bm project sync-setup research ~/Documents/research
116+
bm cloud sync-setup research ~/Documents/research
117117
```
118118

119119
**What happens under the covers:**
@@ -236,7 +236,7 @@ bm project add research --cloud --local-path ~/Documents/research
236236

237237
```bash
238238
# Project already exists on cloud
239-
bm project sync-setup research ~/Documents/research
239+
bm cloud sync-setup research ~/Documents/research
240240
```
241241

242242
**What this does:**
@@ -739,7 +739,7 @@ bm project sync --name research
739739
**Solution:**
740740

741741
```bash
742-
bm project sync-setup research ~/Documents/research
742+
bm cloud sync-setup research ~/Documents/research
743743
bm project bisync --name research --resync
744744
```
745745

@@ -795,7 +795,7 @@ bm project list --local # Local project list
795795
bm project list --cloud # Cloud project list
796796
bm project add <name> --cloud # Create cloud project (no sync)
797797
bm project add <name> --cloud --local-path <path> # Create with local sync
798-
bm project sync-setup <name> <path> # Add sync to existing project
798+
bm cloud sync-setup <name> <path> # Add sync to existing project
799799
bm project rm <name> # Delete project
800800
```
801801

src/basic_memory/cli/commands/cloud/core_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def setup() -> None:
179179
console.print("1. Add a project with local sync path:")
180180
console.print(" bm project add research --cloud --local-path ~/Documents/research")
181181
console.print("\n Or configure sync for an existing project:")
182-
console.print(" bm project sync-setup research ~/Documents/research")
182+
console.print(" bm cloud sync-setup research ~/Documents/research")
183183
console.print("\n2. Preview the initial sync (recommended):")
184184
console.print(" bm project bisync --name research --resync --dry-run")
185185
console.print("\n3. If all looks good, run the actual sync:")

0 commit comments

Comments
 (0)