https://github.com/cblgh/rotonde-merge
merges multiple rotonde feeds into one
https://github.com/cblgh/rotonde-merge
rotonde
Last synced: 2 months ago
JSON representation
merges multiple rotonde feeds into one
- Host: GitHub
- URL: https://github.com/cblgh/rotonde-merge
- Owner: cblgh
- Created: 2017-08-15T13:10:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-30T15:37:10.000Z (over 7 years ago)
- Last Synced: 2025-02-05T00:06:47.624Z (4 months ago)
- Topics: rotonde
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rotonde-merge
_merges multiple rotonde feeds into one_Useful if you have many clients on different machines and want to serve them from a unified feed.
### Usage
Fill out config.js accordingly:
```js
module.exports = {
// absolute path to the merged file you want to serve e.g. /http/rotonde/public/rotonde.json
originPath: "",
// absolute path to your state e.g. /path/to/rotonde-merge/state.json
statePath: "",
// rotonde files you want to merge into one
// supported types are:
// * local file system paths /path/to/rotonde.json
// * http(s) urls e.g. http://rotonde.json.org, or http://rotonde.org/rotonde.json
// note: it's important to include http:// or https:// for URLs
// e.g. files: ["http://rotonde.xxiivv.com", "/home/xxiivv/rotonde/rotonde.json"]
files: []
}
```