https://github.com/jsreport/jsreport-fs-store-azure-sb-sync
Make jsreport fs store run in cluster and synchronize using azure service bus
https://github.com/jsreport/jsreport-fs-store-azure-sb-sync
Last synced: 5 months ago
JSON representation
Make jsreport fs store run in cluster and synchronize using azure service bus
- Host: GitHub
- URL: https://github.com/jsreport/jsreport-fs-store-azure-sb-sync
- Owner: jsreport
- Created: 2017-11-18T20:55:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-20T16:52:11.000Z (almost 5 years ago)
- Last Synced: 2025-01-30T01:17:14.830Z (over 1 year ago)
- Language: JavaScript
- Size: 94.7 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
⚠️ This extension is deprecated and is compatible only with the jsreport v2
--
# jsreport-fs-store-azure-sb-sync
[](https://npmjs.com/package/jsreport-fs-store-azure-sb-sync)
[](https://travis-ci.org/jsreport/jsreport-fs-store-azure-sb-sync)
**Run jsreport [fs store](https://github.com/jsreport/jsreport-fs-store) in cluster and synchronize using azure service bus**
## Installation
> npm install jsreport-fs-store
> npm install jsreport-fs-store-azure-sb-sync
Create an azure service bus and copy the connection string from the shared access policies. Then alter jsreport configuration:
```js
"store": {
"provider": "fs"
},
"extensions": {
"fs-store": {
"sync": {
"provider": "azure-sb"
}
},
"fs-store-azure-sb-sync": {
"connectionString": "...",
// the rest is optional
"topic": "jsreport",
"subscription": ""
}
}
},
```