UNPKG

project-starter-dan

Version:

A project scaffolding tool.

55 lines (49 loc) 893 B
// Update with your config settings. require('dotenv').config(); module.exports = { development: { client: 'postgresql', connection: { database: process.env.DB_NAME, user: process.env.DB_USER, password: process.env.DB_PASS }, pool: { min: 2, max: 10 }, migrations: { tableName: 'knex_migrations' } }, staging: { client: 'postgresql', connection: { database: 'my_db', user: 'username', password: 'password' }, pool: { min: 2, max: 10 }, migrations: { tableName: 'knex_migrations' } }, production: { client: 'postgresql', connection: { database: 'my_db', user: 'username', password: 'password' }, pool: { min: 2, max: 10 }, migrations: { tableName: 'knex_migrations' } } };