24 lines
331 B
JavaScript
Executable File
24 lines
331 B
JavaScript
Executable File
// Update with your config settings.
|
|
|
|
const local = {
|
|
client: 'postgresql',
|
|
connection: {
|
|
database: 'mnml',
|
|
user: 'mnml',
|
|
password: 'craftbeer'
|
|
},
|
|
pool: {
|
|
min: 2,
|
|
max: 10
|
|
},
|
|
migrations: {
|
|
tableName: 'knex_migrations'
|
|
}
|
|
};
|
|
|
|
|
|
module.exports = {
|
|
development: local,
|
|
production: local,
|
|
};
|