-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
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
feat(database)!: simplify postgres config #100
Conversation
49b7e7c
to
6e86575
Compare
3dba8a7
to
979b514
Compare
Receive a single environment variable to setup the postgres connection. It is now possible to omit the password and let the Pg drive load it from its own passfile.
979b514
to
a3c95f3
Compare
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
|
|||
- Standardized log libraries and configuration | |||
- Moved GraphQL schema generation to the CI. Now it is distributed as a Github artifact | |||
- Replace `POSTGRES_*` environment variables with `POSTGRES_ENDPOINT` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since there are plans to support sqlite
, maybe we could already start naming this DATABASE_ENDPOINT
or DATABASE_URL
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this would fit perfectly in a separate ticket.
Receive a single environment variable to setup the postgres connection. It is now possible to omit the password and let the Pg driver load it from its own passfile.
Close #55