Skip to content

Commit 8a41776

Browse files
authored
Update README.md
1 parent 17efb10 commit 8a41776

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,20 @@ To do so, adjust `database.json` in `config` folder and set the following produc
7878
// ...
7979

8080
"production": {
81-
"dialect": "postgres",
82-
"driver": "postgres",
81+
"driver": "pg",
8382
"host": "postgres-host",
8483
"port": "5432",
85-
"username": "pg_username",
84+
"user": "pg_username",
8685
"password": "pg_password",
87-
"database": "pg_databasename"
86+
"database": "pg_databasename",
87+
"filename": "/data/production.db",
88+
"ssl": {
89+
"rejectUnauthorized": false
90+
},
91+
"dialect": "postgres",
92+
"dialectOptions": {
93+
"ssl": true
94+
}
8895
}
8996

9097
// ...

0 commit comments

Comments
 (0)