Created
April 18, 2018 20:58
-
-
Save kimschles/808b8ba65aefb7b520f45525b82e9025 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const environment = process.env.NODE_ENV || 'development'; | |
| const config = require('./knexfile'); | |
| const environmentConfig = config[environment]; | |
| const knex = require('knex'); | |
| const connection = knex(environmentConfig); | |
| module.exports = connection; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment