peace 0.0.15

zero stress automation
Documentation
# Profiles

Profiles are a way of logically separating environments, aka namespacing.

First execution / init:

```rust ,ignore
let cmd_ctx_builder = CmdCtx::builder_single_profile_no_flow
    ::<EnvManError, _>(output, &workspace)
    .with_profile_selection(ProfileSelection::Specified(profile!("demo")))

    // for recall
    .with_workspace_param_value(
        WorkspaceParamsKey::Profile,
        Some(profile!("demo")),
    );
```

Subsequent executions:

```rust ,ignore
let cmd_ctx_builder = CmdCtxSpsf::builder
    ::<EnvManError, _>(output, workspace)
    .with_profile_from_workspace_param(WorkspaceParamsKey::Profile)
    .with_flow(flow);
```