Skip to main content
Version: 0.1.0

Installing Packages

Install RAP packages to add features to your repository.

List Available Packages

raisindb package list --repo myapp

Install a Package

raisindb package install blog-starter --repo myapp

Via API:

curl -X POST \
http://localhost:8080/api/repos/myapp/packages/blog-starter-1.0.0/install \
-H "Authorization: Bearer TOKEN"

What Gets Installed

When you install a package:

  1. Mixins are installed (if any)
  2. NodeTypes are created
  3. Workspaces are created or patched
  4. Content nodes are imported (including functions, templates, etc.)

Uninstall a Package

curl -X POST \
http://localhost:8080/api/repos/myapp/packages/blog-starter-1.0.0/uninstall \
-H "Authorization: Bearer TOKEN"

Next Steps