2021-03-18 23:49:16 +01:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const config = require("./config.json");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
client: "pg",
|
|
|
|
connection: {
|
|
|
|
host: config.database.socketPath,
|
|
|
|
database: config.database.database
|
2021-10-09 20:16:34 +02:00
|
|
|
},
|
|
|
|
migrations: {
|
|
|
|
tableName: "srap_knex_migrations"
|
2021-12-09 10:12:11 +01:00
|
|
|
},
|
|
|
|
pool: { min: 0, max: 2 }
|
2021-03-18 23:49:16 +01:00
|
|
|
};
|