You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: demo/README.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ There are several demos available for ACA-Py mostly (but not only) aimed at deve
25
25
-[Multi-ledger](#multi-ledger)
26
26
-[DID Exchange](#did-exchange)
27
27
-[Endorser](#endorser)
28
-
-[Run Askar Backend](#run-askar-backend)
28
+
-[Run Indy-SDK Backend](#run-indy-sdk-backend)
29
29
-[Learning about the Alice/Faber code](#learning-about-the-alicefaber-code)
30
30
-[OpenAPI (Swagger) Demo](#openapi-swagger-demo)
31
31
-[Performance Demo](#performance-demo)
@@ -247,12 +247,12 @@ Note that you can't (currently) use the DID Exchange protocol to connect with an
247
247
248
248
This is described in [Endorser.md](Endorser.md)
249
249
250
-
### Run Askar Backend
250
+
### Run Indy-SDK Backend
251
251
252
-
This runs using the askar libraries instead of indy-sdk:
252
+
This runs using the indy-sdk libraries instead of askar:
253
253
254
254
```bash
255
-
./run_demo faber --wallet-type askar
255
+
./run_demo faber --wallet-type indy
256
256
```
257
257
258
258
### Mediation
@@ -404,14 +404,20 @@ You can also run the demo against a postgres database using the following:
404
404
405
405
(Obvs you need to be running a postgres database - the command to start postgres is in the yml file provided above.)
406
406
407
-
You can tweak the number of credentials issued using the `--count` and `--batch` parameters, and you can run against an Askar database using the `--wallet-type askar` option.
407
+
You can tweak the number of credentials issued using the `--count` and `--batch` parameters, and you can run against an Askar database using the `--wallet-type askar` option (or run using indy-sdk using `--wallet-type indy`).
Now that you have a solid foundation in using ACA-Py, time for a coding challenge. In this challenge, we extend the Alice-Faber command line demo by adding in ACME Corp, a place where Alice wants to work. The demo adds:
0 commit comments