diff --git a/README.md b/README.md index 012f4ccd..b6f4f60a 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,10 @@ connector-to-connector communication to fail. All REST requests made from the script are available in the [Postman collection](./deployment/postman/MVD.postman_collection.json). +With the [HTTP Client](https://www.jetbrains.com/help/idea/http-client-in-product-code-editor.html) +and [Import from Postman Collections](https://plugins.jetbrains.com/plugin/22438-import-from-postman-collections) +plugins, the Postman collection can be imported and then executed by means of the +[environment file](./deployment/postman/http-client.env.json), selecting the "Local" environment. ## Running the Demo (Kubernetes) diff --git a/deployment/postman/http-client.env.json b/deployment/postman/http-client.env.json new file mode 100644 index 00000000..0550d19b --- /dev/null +++ b/deployment/postman/http-client.env.json @@ -0,0 +1,9 @@ +{ + "Local": { + "CS_URL": "http://localhost:7082", + "HOST": "http://localhost:8081", + "PARTICIPANT_ID": "super-user", + "CATALOG_URL": "http://localhost:8084", + "DID": "did:web:super-user" + } +}