This repository holds code example for IDVerse's IDV Platform.
The SDK documentation is available at idvplatform.docs.idverse.com/docs/getting-started.
- Make sure you have Node.js installed
- For each app you will need to run
npm installto get all the dependencies then update the code below with parameters with those from your Tenant session:
<idv-sdk-web
session-url="YOUR_SESSION_URL"
session-token="YOUR_SESSION_TOKEN"
></idv-sdk-web>For the React flow-example app, create a .env.local file at the root of the project with the following content (add real variables in place of the placeholders):
VITE_SDK_SESSION_URL=https://........
VITE_SDK_SESSION_TOKEN=idv_..........You do not need to alter the values within the idv-sdk-web component for the flow-example app.
- Run the app with
npm run host(your app will be available on the local network for testing with other devices as well).