@arcblock/blocklet-registry
Version:
**Blocklets** are reusable building blocks to help developers and community users to build things on [ArcBlock](https://www.arcblock.io) platform. A blocklet serves one and only one purpose, reusability is the core design philosophy of blocklets. Reusabil
60 lines • 1.43 kB
JSON
{
"name": "ocap-qldb-adapter",
"version": "0.4.6",
"main": "index.js",
"title": "QLDB Manager",
"description": "Simple app that serve an OCAP adapter which uses AWS QLDB as backend",
"keywords": [
"qldb",
"adapter"
],
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
"blocklet": {
"group": "dapp",
"color": "primary",
"main": "index.js",
"logo": "logo.png",
"provider": "arcblock",
"admin_url": "",
"config_url": "",
"public_url": "/",
"doc_url": "",
"hooks": {
"pre-deploy": "npm run build",
"pre-start": "node pre-start.js"
},
"hookFiles": [
"pre-start.js"
],
"requiredEnvironments": [
{
"name": "AWS_ACCESS_KEY_ID",
"description": "AWS Access Key ID",
"required": true,
"default": ""
},
{
"name": "AWS_SECRET_ACCESS_KEY",
"description": "AWS Access Secret",
"required": true,
"default": ""
},
{
"name": "AWS_LEDGER",
"description": "QLDB ledger name",
"required": false,
"default": "ocap-qldb-demo"
},
{
"name": "AWS_REGION",
"description": "Which region the ledger is created",
"required": false,
"default": "us-west-2"
}
]
},
"publishConfig": {
"access": "public",
"directory": "_blocklet/"
}
}