Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes spelling mistake "poool" #343

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# LibSovToken

Adds Sovrin's token functionality to HyperLedger's Indy-SDK.
Adds Sovrin's token functionality to HyperLedger's Indy-SDK.


<a id="requirements"></a>
Expand All @@ -45,25 +45,25 @@ Adds Sovrin's token functionality to HyperLedger's Indy-SDK.

git clone https://github.com/hyperledger/indy-sdk.git
cd indy-sdk
git checkout stable
git checkout stable
cd libindy
cargo clean
cargo clean
cargo update
cargo build

Libsovtoken build needs to know how to find Indy-SDK. This is done
through the environment variable LIBINDY_DIR.

Create an environment variable LIBINDY_DIR. Have it point the directory
containing indy-sdk binaries.

Use `pwd` to get path to current directory

Add this to your bash profile:
# EXAMPLE

# EXAMPLE
export LIBINDY_DIR='/my/path/to/indy-sdk/libindy/target/debug/'

*Note* anytime you get latest for indy-sdk, you must rebuild the
libraries before building libsovtoken, as the libsovtoken build does not
compile indy-sdk.
Expand All @@ -78,12 +78,12 @@ Adds Sovrin's token functionality to HyperLedger's Indy-SDK.

### Build the pool

cd devops/indy-pool/ && docker build -t indy_pool .
cd devops/indy-pool/ && docker build -t indy_pool .


<a id="run-the-poool"></a>
<a id="run-the-pool"></a>

### run the poool
### run the pool

docker run -itd -p 9701-9708:9701-9708 indy_pool

Expand All @@ -110,4 +110,3 @@ Adds Sovrin's token functionality to HyperLedger's Indy-SDK.
## How To Contribute

Please follow the guide [here](./doc/pull-request.md).