1.0.0 • Published 5 years ago

@garrattsln/jsreport-fs-store-azure-storage-persistence v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

jsreport-fs-store-azure-storage-persistence

NPM Version Build Status

Make jsreport fs store persisting entities into azure blob storage.

Installation

npm install jsreport-fs-store
npm install jsreport-fs-store-azure-storage-persistence

Create an azure storage account and copy account name and access key. Then alter jsreport configuration:

"store": {
  "provider": "fs"
},
"extensions": {
  "fs-store": {
    "persistence": {
      "provider": "azure-storage"
    }
  },
  "fs-store-azure-storage-persistence", {
    "accountName": "...",
    "accountKey": "...",
    // the rest is optional
    "container": "jsreport",
    "lock": {
      "retry": 100,
      "leaseDuration": 30,
      "enabled": true
    }
  }
}