Automatically connect to specified db
Hi 👋
It'd be really cool if you could specify a db to automatically connect to. My company has this extension installed by default on our github codespaces dev container. Only issues is you have to re-enter connection creds every time you checkout a new instance. I'd be very nice if we could specify an instance in the workspaces settings.json. That way new developers would be connected to the dev db without having to follow instructions on a readme
A common convention is to have pg connection details assigned as environment variables (PGUSER, PGPASSWORD, PGDATABASE, PGHOST, PGPORT). These picked up by Node and, for example, pgtyped. Postgresql should use these if present ?