@hasna/sandboxes 0.1.28 → 0.1.29
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 +9 -4
- package/dist/cli/cloud.d.ts +2 -0
- package/dist/cli/index.js +5462 -9412
- package/dist/db/cloud-config.d.ts +13 -0
- package/dist/db/cloud-sync.d.ts +29 -0
- package/dist/db/database.d.ts +1 -0
- package/dist/db/pg-migrate.d.ts +7 -0
- package/dist/db/remote-storage.d.ts +11 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5576 -9762
- package/dist/lib/secrets.d.ts +1 -1
- package/dist/mcp/cloud-tools.d.ts +2 -0
- package/dist/mcp/index.js +1953 -6779
- package/dist/server/index.js +2522 -7378
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -67,14 +67,19 @@ sandboxes-serve
|
|
|
67
67
|
|
|
68
68
|
## Cloud Sync
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
Cloud sync is optional. By default sandboxes use local SQLite at `~/.hasna/sandboxes/`.
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
|
-
cloud
|
|
74
|
-
cloud
|
|
75
|
-
cloud
|
|
73
|
+
sandboxes cloud status
|
|
74
|
+
sandboxes cloud push
|
|
75
|
+
sandboxes cloud pull
|
|
76
|
+
sandboxes cloud sync
|
|
76
77
|
```
|
|
77
78
|
|
|
79
|
+
Set `HASNA_SANDBOXES_CLOUD_DATABASE_URL` or configure
|
|
80
|
+
`~/.hasna/sandboxes/cloud/config.json` to run in hybrid/cloud mode with
|
|
81
|
+
PostgreSQL.
|
|
82
|
+
|
|
78
83
|
## Data Directory
|
|
79
84
|
|
|
80
85
|
Data is stored in `~/.hasna/sandboxes/`.
|