jackc / tern

The SQL Fan's Migrator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature Request: Parse entire DSN from environment variable

mattrasband opened this issue · comments

A useful feature might be to allow parsing the DSN fully from the environment, as a decent number of services expose something like DATABASE_URL which is often in a url format. In those cases, it's more difficult to manually parse out the pieces into a config file.

I have no objection to this if someone wants to add this. But personally, I use PGSERVICE.

I worked around this by making my entire config file just:

[database]
conn_string = {{env "DATABASE_URI"}}