Quick Start with Imbricate CLI

Install the Imbricate CLI by running:

With any terminal shell, run the following command.

npm install -g imbricate

Setup Origin

The Imbricate CLI requires an origin to store data. You can use the Imbricate File System Origin to get started.

With any terminal shell, run the following command.

imbricate origin add file-system <ORIGIN-NAME> <ORIGIN-PATH>

While <ORIGIN-NAME> is the name of the origin and <ORIGIN-PATH> is the path to the origin, where the file-system-origin will use to store your documents with markdown and json format.

Use Origin

Imbricate CLI supports to store and manage your note and scripts file under multiple origins, to separate your data and manage them in a more organized way. Like a Stack API server for home, and store secure file locally for your work.

To set the origin you are currently working with, you can use the following command:

With any terminal shell, run the following command.

imbricate origin use <ORIGIN-NAME>

Advanced Usage