Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rp01/balance-transfer-vault
fork of https://github.com/hyperledger/fabric-samples/tree/release-1.4/balance-transfer with implimentation of hashicorp' vault
https://github.com/rp01/balance-transfer-vault
Last synced: 5 days ago
JSON representation
fork of https://github.com/hyperledger/fabric-samples/tree/release-1.4/balance-transfer with implimentation of hashicorp' vault
- Host: GitHub
- URL: https://github.com/rp01/balance-transfer-vault
- Owner: rp01
- License: mit
- Created: 2019-02-23T09:47:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T04:58:35.000Z (about 2 years ago)
- Last Synced: 2024-10-27T22:09:22.198Z (about 2 months ago)
- Language: JavaScript
- Size: 278 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# balance-transfer-vault
fork of https://github.com/hyperledger/fabric-samples/tree/release-1.4/balance-transfer with implimentation of hashicorp' vaultif you are getting error as
Some Times you may get error ```Error: Status 404``` even in setting values. just open another terminal tab/window run:```
export VAULT_TOKEN=
export VAULT_ADDRESS='http(s)://:'
````Then run the following command:
```
vault secrets disable secret
vault secrets enable -version=1 -path=secret kv
```This example requuires to vault instanses. Assuming vault is already installed
to run multiple instanses
run :
```
vault server -dev
```
and in a separate tab
```
vault server -dev -dev-listen-address=127.0.0.1:8300
```