biff

2025-09-01T02:45:07.901509Z

I think I went through this before but I am having trouble with the secrets: Execution error (IllegalArgumentException) at com.biffweb.config/use-aero-config$secret (config.clj:84). I generated the secrets and added them to my config.template.env. I did not see Aero in the deps

2025-09-01T06:01:38.246509Z

I'm guessing that whatever secret you're trying to get from the config is stored as a #biff/env FOO or something instead of #biff/secret FOO. Biff stores wraps secrets in functions (e.g. so you don't leak them if you accidentally serialize your system map somehow), so when you try to get a secret, biff will call that value from your config as a function. But if it's not a #biff/secret then it won't actually be a function, and you'll get the IllegalArgumentException.