[#149] simplify secret loading for cli scripts
Closes #149 (closed)
Value
- right now devs have to run a weird incantation (
set -a && source .env && set +a
) to make sure env vars are globally-loaded whenever running a CLI command - we would like these commands to "just work" so we can focus on other sysadmin tasks
Behavior
GIVEN an unlocked .env
file (achieved with make unlock
)
- WHEN a maintainer issues any
boost
command - THEN all needed env vars will be in scope and no error will occur
GIVEN a locked .env
file
- WHEN a maintainer issues any
boost
command - THEN they will receive an error message prompting them to unlock secrets with
make unlock
Edited by aguestuser