Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dapplion/dappnode-core-manifest-generator
Generates a CORE manifest given a set of Github tags defined in index.js
https://github.com/dapplion/dappnode-core-manifest-generator
Last synced: about 20 hours ago
JSON representation
Generates a CORE manifest given a set of Github tags defined in index.js
- Host: GitHub
- URL: https://github.com/dapplion/dappnode-core-manifest-generator
- Owner: dapplion
- License: mit
- Created: 2019-04-29T20:29:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-02T08:47:04.000Z (over 5 years ago)
- Last Synced: 2024-12-28T06:48:33.613Z (10 days ago)
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dappnode-core-manifest-generator
Generates CORE manifest given a set of Github tags defined in `index.js`
```js
generateCoreManifest({
"bind.dnp.dappnode.eth": "v0.2.0",
"ipfs.dnp.dappnode.eth": "v0.2.0",
"ethchain.dnp.dappnode.eth": "v0.2.0",
"ethforward.dnp.dappnode.eth": "v0.2.0",
"vpn.dnp.dappnode.eth": "v0.2.0",
"wamp.dnp.dappnode.eth": "v0.2.0",
"admin.dnp.dappnode.eth": "v0.2.0",
"dappmanager.dnp.dappnode.eth": "v0.2.0",
"wifi.dnp.dappnode.eth": "v0.2.0"
});
```## How to use
```bash
git clone https://github.com/dapplion/dappnode-core-manifest-generator.git
cd dappnode-core-manifest-generator
```Now, edit the index.js versions if you need. Then, run `ìndex.js`
```
node index.js
```If all tags are available, it will return an output like this:
```bash
user:~/dappnode-core-manifest-generator$ node index.js
Fetched DNP_ETHFORWARD
Fetched DNP_ETHCHAIN
Fetched DNP_WAMP
Fetched DNP_DAPPMANAGER
Fetched DNP_BIND
Fetched DNP_ADMIN
Fetched DNP_IPFS
Fetched DNP_VPN
Fetched DNP_WIFIUploaded core manifest successfully!
https://ipfs.io/ipfs/QmS2ZBZ8G43jyTx8tQPJW1xDZUieLBKzBPTiCS3ExvyXrx
/ipfs/QmS2ZBZ8G43jyTx8tQPJW1xDZUieLBKzBPTiCS3ExvyXrx
```