load .env in knexfile and /lib/database.js

This commit is contained in:
Ashley Williams 2016-05-26 15:06:47 -04:00
Родитель 786f2bec4f
Коммит 029fcc7653
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,5 @@
require('dotenv').load();
module.exports = {
development: {
client: 'pg',

Просмотреть файл

@ -1,3 +1,4 @@
require('dotenv').load();
const config = require('../../knexfile')[process.env.NODE_ENV || "development"];
const Knex = require('knex')(config);