Conversation
|
We still need the postgres admin user The app should generally talk to the database with a password. It's not safe to give the app user admin permissions without a password. It might make sense to add a line which gives passwordless access to a specific database. |
…r to application database
|
Gotcha, that make sense. I have updated |
|
I think it's unnecessary, though. By default you can connect to any local database with a password by connecting to 127.0.0.1 using this line: - { type: host, database: all, user: all, address: "127.0.0.1/32", method: "{{ postgresql_default_auth_method }}", comment: "IPv4 local connections:" }The Elixir Postgres db driver uses TCP. I don't think it supports Unix domain sockets. |
Current setup, postgres user will default to
postgres. This PR will use project name instead.