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: README.md
+17
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,23 @@ This repository holds code example for IDVerse's [IDV Platform](https://idvplatf
4
4
5
5
The SDK documentation is available at [idvplatform.docs.idverse.com/docs/getting-started](https://idvplatform.docs.idverse.com/docs/getting-started).
6
6
7
+
## Quick Start
8
+
9
+
- Make sure you have [Node.js](https://nodejs.org/) installed
10
+
- Download the built SDK from your Tenant session
11
+
- Extract the `sdk-build-******.zip` and copy `idverse-sdk-browser` folder to the `sdk-integration-examples` folder
12
+
- For each app you will need to run `npm install` to get all the dependencies then update the code below with parameters with those from your Tenant session:
13
+
14
+
```jsx
15
+
<idverse-sdk-ui
16
+
session-url="YOUR_SESSION_URL"
17
+
session-token="YOUR_SESSION_TOKEN"
18
+
session-build-id="YOUR_SESSION_BUILD_ID"
19
+
></idverse-sdk-ui>
20
+
```
21
+
22
+
- Run the app with `npm run host` (your app will be available on the local network for testing with other devices as well)
23
+
7
24
## Example Apps
8
25
9
26
-[IDKit Core Web SDK using Angular](./sdk-integration-examples/web-sdk/angular)
0 commit comments