I have a Heroku Ruby app, and I want to access the DB through Navicat, or pgAdmin, or similar. However, the thing that Heroku gives me as a DB URL doesn't seem to be a valid URL.
Heroku tells me to use: heroku config:get DATABASE_URL -a your-app
However, that gives me something of the form
postgres://HUGE:STRINGOF@GIBERISH.compute-1.amazonaws.com:5432/MORECHARACTERS
which doesn't look like a valid URL to me, and both Navicat and pgAdmin fail to connect.
How can I use this value to connect to my database?