Closed RomainLanz closed 7 months ago
A couple of things to keep in mind
@adonisjs/core
.It is going to be a breaking change for this package.
Why is this a breaking change? The behavior is not changing for current users.
We have changed the parse method to async, which was sync earlier.
So anyone relying on this package using the Parser directly (which is publicly exported) has to now await the parse method call
Ah yes, for anyone using the package directly, it is a breaking change, that's true. 😄
Hey there! 👋🏻
This PR is the continuation of https://github.com/adonisjs/env/pull/35. It adds a way to set up an identifier for an environment variable, helping to interpolate the value of your env.
It can be useful in multiple scenarios.
To manage your secrets, you may use a Secrets Vault like
Docker Secret
orHashiCorp Vault
. Doing so it will generate a path for your secret and won't give you any value directly. You can write a custom logic to read the file content.You may encrypt your secrets. You will be able to decrypt them on the fly.