// Update with your config settings. /** * @type { Object. } */ module.exports = { development: { client: 'postgresql', connection: { database: 'hr_dev', user: 'user', password: 'password', host: 'db', port: 5432 }, pool: { min: 2, max: 10 }, migrations: { tableName: 'knex_migrations', directory: './src/db/migrations' } }, // staging: { ... }, // production: { ... } };