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:
- Mixins are installed (if any)
- NodeTypes are created
- Workspaces are created or patched
- 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"