require('dotenv').config() module.exports = { development: { client: 'mysql', connection: { host: 'localhost', port: 3306, user: 'root', password: 'root', database: 'test', }, pool: { min: 2, max: 10 }, migrations: { directory: './db/migrations' }, seeds: { directory: './db/seeds' } }, }