Adrian Benavides
Adrian Benavides
When [creating a secure channel](https://github.com/build-trust/ockam/blob/develop/implementations/rust/ockam/ockam_identity/src/channel.rs#L35), multiple workers are spawned but only the address of the top-level worker is returned, making it impossible to remove all used resources. We use "temporary...
Add an abstraction layer on top of `connect_to` to make it easier to write commands' api req/res handlers. It removes a lot of boilerplate around calling the background node and...
Related PR: https://github.com/build-trust/ockam/pull/2995 We need to add a new section to the `ockam_command/ockam.toml` file to define the auth0 config values used at `ockam_command/src/enroll/auth0.rs:79` (except for `SCOPES`): ```rust impl Auth0Service {...
Fully rewrites the hicpo.js file fixing the annoying visual effect when dragging items and also makes the code easier to extend/maintain.
It loads a json file containing a list of commands that will be executed after creating a node. To generate this json file, the user can use the global `--export`,...
* [x] Develop a set of helpers to simplify commands logic ([PR](https://github.com/build-trust/ockam/pull/3168)) * [ ] Apply to `configuration` commands * [ ] Apply to `enroll` commands * [x] Apply to...
The following works: ```bash node create ... node stop ... node start ... ``` But if we stop and start the same node again, it fails and the node never...
We want to add the first created node as `default: {node: NODE_NAME}` to the config file and layer read that value when executing any command. We also want to add...
### Observed behavior We check [this file](https://github.com/build-trust/ockam/blob/f1cc52b5e336e34e224ef2c31ffb087acbf7a68c/implementations/rust/ockam/ockam_command/src/upgrade.rs#L27) in the command let the user know if there is an update available, but that file is not currently being included in the...