You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to connect to a PostgreSQL the following error occurs (on yarn run setup): error: no pg_hba.conf entry for host "HOSTNAME", user "USERNAME", database "PASSWORD", SSL off
This is due to TypeORM not having the ssl: on option (and I couldn't find an existing .env var corresponding to it).
For now, to avoid changing the code for initial setup I've been running PGSSLMODE=require to fix this issue
(full command PGSSLMODE=require yarn run setup)
The text was updated successfully, but these errors were encountered:
When trying to connect to a PostgreSQL the following error occurs (on
yarn run setup
):error: no pg_hba.conf entry for host "HOSTNAME", user "USERNAME", database "PASSWORD", SSL off
This is due to TypeORM not having the
ssl: on
option (and I couldn't find an existing .env var corresponding to it).For now, to avoid changing the code for initial setup I've been running
PGSSLMODE=require
to fix this issue(full command
PGSSLMODE=require yarn run setup
)The text was updated successfully, but these errors were encountered: