import dotenv from 'dotenv'; dotenv.config(); module.exports = { development: { debug: true, client: "pg", connection: { database: process.env.DB_NAME, user: process.env.DB_USERNAME, password: process.env.DB_PASSWORD }, pool: { min: 2, max: 10 }, migrations: { tableName: "knex_migrations" } }, staging: { client: "pg", connection: { database: process.env.DB_NAME, user: process.env.DB_USERNAME, password: process.env.DB_PASSWORD }, pool: { min: 2, max: 10 }, migrations: { tableName: "knex_migrations" } }, production: { client: "pg", connection: { database: "my_db", user: "username", password: "password" }, pool: { min: 2, max: 10 }, migrations: { tableName: "knex_migrations" } } };
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter