We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can continue the conversation there. Go to discussion →
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--envfile
dbmate does not support additional .env files, e.g. .env.local or .env.development.local due to joho/godotenv#10
.env
.env.local
.env.development.local
Possible solutions of varying completeness:
loadDotEnv
godotenv.Load()
The text was updated successfully, but these errors were encountered:
I also would like this issue supported
Sorry, something went wrong.
Happy to accept a PR for this, I think it would only be a few lines of code
I haven't written any go code, but if this is still sitting open in a week or two, I may give it a try.
Also, if anyone does write a pr, I would definitely prefer the solution of
Add --envfile option which specifies file for godotenv.Load()
I'd love this too.
Looks like something like godotenv.Load(".env.local") is supported.
godotenv.Load(".env.local")
No branches or pull requests
dbmate does not support additional
.env
files, e.g..env.local
or.env.development.local
due to joho/godotenv#10Possible solutions of varying completeness:
loadDotEnv
also load.env.local
--envfile
option which specifies file forgodotenv.Load()
The text was updated successfully, but these errors were encountered: