Skip to content

Commit c5fa361

Browse files
Update README.md
Signed-off-by: George J Padayatti <[email protected]>
1 parent c34099f commit c5fa361

File tree

1 file changed

+25
-17
lines changed

1 file changed

+25
-17
lines changed

README.md

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ you are using (with the highest value for `J`).
1616

1717
Requirements:
1818
- Python 3.6 or higher
19-
- ACA-Py
19+
- ACA-Py 0.5.6
2020

2121
### Setup Aries Cloud Agent - Python
2222

@@ -26,42 +26,50 @@ noting that this is not the only way to setup an ACA-Py instance. For more setup
2626
configurations, see the [Aries Cloud Agent - Python
2727
repository](https://github.com/hyperledger/aries-cloudagent-python).
2828

29-
First, clone
30-
[ACA-Py](https://github.com/hyperledger/aries-cloudagent-python) and prepare a
31-
virtual environment:
29+
First, prepare a virtual environment:
3230
```sh
33-
$ git clone https://github.com/hyperledger/aries-cloudagent-python
34-
$ cd aries-cloudagent-python
3531
$ python3 -m venv env
3632
$ source env/bin/activate
3733
```
3834

39-
Install ACA-Py into the virtual environment:
35+
Install ACA-Py 0.5.6 into the virtual environment:
4036
```sh
41-
$ pip install -e .
42-
```
43-
**Or** include the `indy` feature if you want to use Indy ledgers or wallets:
44-
```sh
45-
$ pip install -e .[indy]
37+
$ pip install aries-cloudagent==0.5.6
4638
```
4739

4840
### Plugin Installation
4941

5042
Install this plugin into the virtual environment:
5143

5244
```sh
53-
$ pip install git+https://github.com/decentralised-dataexchange/acapy-mydata-did-protocol.git@master#egg=mydata_did
45+
$ pip install git+https://github.com/decentralised-dataexchange/acapy-mydata-did-protocol.git@master
5446
```
5547

56-
**Note:** Depending on your version of `pip`, you may need to drop the
57-
`#egg=...` to install the plugin with the above command.
48+
**Note:** Depending on your version of `pip`, you may need to drop or the
49+
`#egg=mydata_did` to install the plugin with the above command.
5850

5951
### Plugin Loading
6052
Start up ACA-Py with the plugin parameter:
6153
```sh
6254
$ aca-py start \
63-
-it http localhost 3000 -it ws localhost 3001 \
55+
-it http 0.0.0.0 8002 \
6456
-ot http \
65-
-e http://localhost:3000 ws://localhost:3001 \
57+
-e "http://localhost:8002/" \
58+
--label "Agent" \
59+
--admin 0.0.0.0 8001 \
60+
--admin-insecure-mode \
61+
--auto-accept-requests \
62+
--auto-ping-connection \
63+
--auto-respond-credential-offer \
64+
--auto-respond-credential-request \
65+
--auto-store-credential \
66+
--auto-respond-presentation-proposal \
67+
--auto-respond-presentation-request \
68+
--auto-verify-presentation \
69+
--genesis-url https://indy.igrant.io/genesis \
70+
--wallet-type indy \
71+
--wallet-name "agent_wallet" \
72+
--log-level info \
73+
--wallet-key "wallet@123" \
6674
--plugin "mydata_did"
6775
```

0 commit comments

Comments
 (0)