You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We use api keys to download external dependencies, but you mustn't include them in the git repository. So we define it in the .env.local file, which is excluded from git. But we also need to define other variables that should be stored in git. Those we want to store in .env.
Describe the solution you'd like
To support this behaviour it would be great, to be able to specify multiple files in dotenv.filename which will be all read and override each other in the order specified
Describe alternatives you've considered
Currently we use gradle.properties as an alternative to the .env files
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
We use api keys to download external dependencies, but you mustn't include them in the git repository. So we define it in the
.env.local
file, which is excluded from git. But we also need to define other variables that should be stored in git. Those we want to store in.env
.Describe the solution you'd like
To support this behaviour it would be great, to be able to specify multiple files in
dotenv.filename
which will be all read and override each other in the order specifiedDescribe alternatives you've considered
Currently we use
gradle.properties
as an alternative to the.env
filesThe text was updated successfully, but these errors were encountered: