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: documentation/docs/quick-start.md
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ More in depth documentation about [Cloud Agent](/docs/concepts/glossary/#cloud-a
44
44
### Wallet SDKs
45
45
[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.
46
46
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/))
48
48
49
49
50
50
@@ -175,7 +175,7 @@ curl --location \
175
175
176
176
```bash
177
177
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' \
179
179
--header 'Accept: application/json'
180
180
```
181
181
@@ -290,8 +290,9 @@ npm run build
290
290
291
291
* Start the React demo:
292
292
```bash
293
-
cd demos/browser
293
+
cd demos/next
294
294
npm i
295
+
npm run build
295
296
npm run start
296
297
```
297
298
@@ -348,11 +349,16 @@ The latest mediator version can be found at [Mediator releases](https://github.c
348
349
349
350
:::
350
351
352
+
Mac OSX terminal shell
351
353
```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
353
359
```
354
360
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.
356
362
357
363
3. More advanced documentation and configuration options can be found [here](https://github.com/hyperledger/identus-mediator).
0 commit comments