We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
flow/db/budget_db/connection.go
Line 30 in fc57ae7
In the above postgres connection string sslmode is not mentioned. By default sslmode take the require parameter which is not good for local development purpose. Ref: https://pkg.go.dev/github.com/lib/pq#hdr-Connection_String_Parameters
sslmode
We should set that as sslmode=disable in .env file and if it is in production we can set different value.
sslmode=disable
The text was updated successfully, but these errors were encountered:
Thank you, @rizahmeds for pointing this out. I added the sslmode.
Here it is: Link
Sorry, something went wrong.
No branches or pull requests
flow/db/budget_db/connection.go
Line 30 in fc57ae7
In the above postgres connection string
sslmode
is not mentioned. By defaultsslmode
take the require parameter which is not good for local development purpose.Ref: https://pkg.go.dev/github.com/lib/pq#hdr-Connection_String_Parameters
We should set that as
sslmode=disable
in .env file and if it is in production we can set different value.The text was updated successfully, but these errors were encountered: