Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: environment file for HTTP Client plugin (IntelliJ) #280

Merged
merged 2 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
9 changes: 9 additions & 0 deletions deployment/postman/http-client.env.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
Loading