file. What do you go for when needing "secrets" in your build file?
e
eygraber
12/26/2024, 3:32 PM
Depends on the type of secret.
If it's a secret from everyone, even your developers (e.g. prod secrets that only a few have access to) then I keep my secrets in CI and expose them to CI builds through env vars (in those cases it isn't possible to make prod builds locally).
If it's a secret just to not have plaintext in the project, I use ejson (via my library / Gradle plugin)