@abloatai/cli
v0.62.0
Published
The ablo command line: set up Ablo, connect your database, and push your schema from the terminal.
Downloads
2,522
Readme
@abloatai/cli
The ablo command line: set up Ablo, connect your database, and push your schema from the terminal.
npx ablo init # scaffold ablo/ with a starter schema
npx ablo login # authorize in your browser, set up your keys
npx ablo connect # connect your database
npx ablo push # upload your schema; your rows stay in your database
npx ablo dev # prepare this Git branch, push, then watch
npx ablo status # see what your key acts on and whether writes will workRun npx ablo --help for the full command list, or npx ablo docs to read the guides.
Installing
npx ablo works with nothing installed: it ships inside @abloatai/ablo, which resolves this package and fetches it on first run. Add it to a project for pinned, offline runs:
npm i -D @abloatai/cliWhat it does
The CLI drives your Ablo project against the @abloatai/ablo SDK. Your schema
lives in ablo/; dev gives each Git branch an isolated Ablo branch and
temporary credential, while push is the lower-level one-shot schema command.
Your rows stay in your own database.
