load .env in knexfile and /lib/database.js
This commit is contained in:
Родитель
786f2bec4f
Коммит
029fcc7653
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче