4.1.0 • Published 11 months ago

@jsreport/jsreport-fs-store-azure-storage-persistence v4.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

@jsreport/jsreport-fs-store-azure-storage-persistence

NPM Version

Make jsreport fs store persisting entities into azure blob storage.

Installation

npm install @jsreport/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": "...",  
    // omit in case of azure managed identity  
    "accountKey": "...", 
    // the rest is optional    
    "container": "jsreport",
    "lock": {
      "retry": 100,
      "leaseDuration": 30,
      "enabled": true
    }
  }
}

Changelog

4.0.1

  • fix jsreport v4 regression #1104

4.0.0

  • minimum node.js version is now 18.15.0

3.0.0-beta.1

Adaptations for the v3 APIs