We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184372b commit 5ce27a6Copy full SHA for 5ce27a6
.editorconfig
@@ -2,6 +2,7 @@ root = true
2
3
[*]
4
indent_style = space
5
+quote_type = single
6
indent_size = 2
7
charset = utf-8
8
trim_trailing_whitespace = true
api/src/config/database.js
@@ -6,9 +6,14 @@ module.exports = {
password: process.env.POSTGRES_PASSWORD,
database: process.env.POSTGRES_DB,
operatorAliases: false,
9
+ dialectOptions: {
10
+ ssl: {
11
+ rejectUnauthorized: false
12
+ }
13
+ },
14
define: {
15
timestamps: true,
16
underscored: true,
- underscoredAll: true,
- },
17
+ underscoredAll: true
18
19
};
0 commit comments