Fork me on GitHub
#boot
<
2017-10-12
>
cjsauer14:10:58

Could someone please point me to a resource that explains where to put sensitive env vars using boot? In lein, I would use environ and then store my sensitive values in profiles.clj, and environ handled all the details of loading and making that available. What is the boot equivalent? I see that I can do things like boot environ -e database-url=jdbc: repl, but that doesn't seem as "nice" as the way lein handled it. Surely I'm just missing something.

cjsauer14:10:20

Ah profile.boot. I think that's what I'm looking for.

juhoteperi14:10:02

I prefer keeping app config / env vars completely separate from build tool

dave14:10:20

the adzerk way™ is to store all the sensitive info in environment variables and use a tiny library we wrote called env to work with them easily

cjsauer15:10:20

Cool, I'll take a look. Thanks!

richiardiandrea20:10:21

Env is awesome ;)