Skip to content

Commit ac555b0

Browse files
authored
fix: quick start guide contents (#145)
* fix: quick start guide contents Signed-off-by: Javier Ribó <[email protected]> * fix: deprecate old demo Signed-off-by: Javier Ribó <[email protected]> * fix: update qsg Signed-off-by: Javier Ribó <[email protected]> * fix: mediator startup command improved to allow setting the service endpoints Signed-off-by: Javier Ribó <[email protected]> * fix: remove invalid comma Signed-off-by: Javier Ribó <[email protected]> --------- Signed-off-by: Javier Ribó <[email protected]>
1 parent f89f7ad commit ac555b0

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

documentation/docs/quick-start.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ More in depth documentation about [Cloud Agent](/docs/concepts/glossary/#cloud-a
4444
### Wallet SDKs
4545
[Wallet SDKs](/docs/concepts/glossary/#wallet-sdk) for web and mobile (iOS, Android, TypeScript) enable identity holders to store credentials and respond to proof requests. They are typically used in applications that allow identity holders to interact with issuers and verifiers.
4646

47-
More in-depth documentation about the different Wallet SDKs can be found here ([TypeScript](https://input-output-hk.github.io/atala-prism-wallet-sdk-ts/), [Swift](https://input-output-hk.github.io/atala-prism-wallet-sdk-swift/), [KMM](https://input-output-hk.github.io/atala-prism-wallet-sdk-kmm/))
47+
More in-depth documentation about the different Wallet SDKs can be found here ([TypeScript](https://input-output-hk.github.io/identus-docs/identus-edge-agent-sdk-ts/sdk), [Swift](https://input-output-hk.github.io/atala-prism-wallet-sdk-swift/), [KMM](https://input-output-hk.github.io/atala-prism-wallet-sdk-kmm/))
4848

4949

5050

@@ -175,7 +175,7 @@ curl --location \
175175

176176
```bash
177177
curl --location \
178-
--request POST 'http://localhost:8000/prism-agent/did-registrar/dids/{didRef}/publications' \
178+
--request POST 'http://localhost:8000/cloud-agent/did-registrar/dids/{didRef}/publications' \
179179
--header 'Accept: application/json'
180180
```
181181

@@ -290,8 +290,9 @@ npm run build
290290

291291
* Start the React demo:
292292
```bash
293-
cd demos/browser
293+
cd demos/next
294294
npm i
295+
npm run build
295296
npm run start
296297
```
297298

@@ -348,11 +349,16 @@ The latest mediator version can be found at [Mediator releases](https://github.c
348349

349350
:::
350351

352+
Mac OSX terminal shell
351353
```bash
352-
MEDIATOR_VERSION=0.10.2 docker-compose up
354+
MEDIATOR_VERSION=0.15.0 SERVICE_ENDPOINTS="http://$(ipconfig getifaddr $(route get default | grep interface | awk '{print $2}')):8080;ws://$(ipconfig getifaddr $(route get default | grep interface | awk '{print $2}')):8080/ws" docker-compose up
355+
```
356+
Linux terminal shell
357+
```bash
358+
MEDIATOR_VERSION=0.15.0 SERVICE_ENDPOINTS="http://$(ip addr show $(ip route show default | awk '/default/ {print $5}') | grep 'inet ' | awk '{print $2}' | cut -d/ -f1):8080;ws://$(ip addr show $(ip route show default | awk '/default/ {print $5}') | grep 'inet ' | awk '{print $2}' | cut -d/ -f1):8080/ws" docker-compose up
353359
```
354360

355-
`MEDIATOR_ENDPOINT` is then set to [http://localhost:8080](http://localhost:8080).
361+
`MEDIATOR_ENDPOINT` is then set to your local ip address:8080.
356362

357363
3. More advanced documentation and configuration options can be found [here](https://github.com/hyperledger/identus-mediator).
358364

@@ -834,7 +840,7 @@ curl --location \
834840
"trustIssuers": [
835841
[[PUBLISHED PRISM DID FROM THE ISSUER]]
836842
]
837-
},
843+
}
838844
],
839845
"options": {
840846
"challenge": "A challenge for the holder to sign",

0 commit comments

Comments
 (0)