srap/knexfile.js

16 lines
267 B
JavaScript
Raw Normal View History

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"
},
pool: { min: 0, max: 2 }
2021-03-18 23:49:16 +01:00
};