name = Local Secret Providers Example
description = Resolve local secrets from environment variables and files without shell callbacks.
$ API_ORIGIN = https://api.example.com
$ API_TOKEN = secret.env("HEN_API_TOKEN")
$ CLIENT_ID = secret.file("./secrets/demo_client_id.txt")
---
Get profile
GET {{ API_ORIGIN }}/profile
* Authorization = Bearer {{ API_TOKEN }}
* X-Client-Id = {{ CLIENT_ID }}
^ & status == 200