Added bearer auth to the staging environment file:
api:
baseUrl: https://jsonplaceholder.typicode.com
auth: { type: bearer, token: "${API_TOKEN}" }Then:
sdods run -p demo-shop -e staging -l apiIt dies before a single request goes out:
✖ CONFIG_UNRESOLVED_VAR: Unresolved variable ${API_TOKEN} at "env.api.auth.token".
hint: Add API_TOKEN=... to .env or .env.<env> (repo root or project folder), or export it in the shell.
docs: https://docs.sdods.com/docs/guides/configurationThe value is in a file next to the project yaml called env.staging. What am I missing?