Skip to content

Commit

Permalink
Merge pull request #152 from bl4drnnr/web-interface-dev
Browse files Browse the repository at this point in the history
fix database dialect
  • Loading branch information
bl4drnnr authored Apr 6, 2024
2 parents 92f7294 + bacfacf commit 7ad62a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mnemosyne-web-interface/mnemosyne-api/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ import { Category } from '@models/category.model';
username: process.env.POSTGRES_USERNAME,
password: process.env.POSTGRES_PASSWORD,
database: process.env.POSTGRES_DATABASE,
// dialectOptions: {
// ssl: {
// require: true,
// rejectUnauthorized: false
// }
// },
dialectOptions: {
ssl: {
require: true,
rejectUnauthorized: false
}
},
transactionType: TYPES.EXCLUSIVE,
models: [
User,
Expand Down

0 comments on commit 7ad62a4

Please sign in to comment.