@abloatai/cli 0.37.0 → 0.38.0

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.
Files changed (3) hide show
  1. package/README.md +5 -2
  2. package/dist/cli.cjs +2185 -1790
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -7,7 +7,7 @@ npx ablo init # scaffold ablo/ with a starter schema
7
7
  npx ablo login # authorize in your browser, set up your keys
8
8
  npx ablo connect # connect your database
9
9
  npx ablo push # upload your schema; your rows stay in your database
10
- npx ablo dev # push, then keep watching for changes
10
+ npx ablo dev # prepare this Git branch, push, then watch
11
11
  npx ablo status # see what your key acts on and whether writes will work
12
12
  ```
13
13
 
@@ -23,4 +23,7 @@ npm i -D @abloatai/cli
23
23
 
24
24
  ## What it does
25
25
 
26
- The CLI drives your Ablo project against the `@abloatai/ablo` SDK. Your schema lives in `ablo/`; `push` and `dev` send it to Ablo, and your rows stay in your own database.
26
+ The CLI drives your Ablo project against the `@abloatai/ablo` SDK. Your schema
27
+ lives in `ablo/`; `dev` gives each Git branch an isolated Ablo branch and
28
+ temporary credential, while `push` is the lower-level one-shot schema command.
29
+ Your rows stay in your own database.