@@ -1423,6 +1423,11 @@
"is-obj": "1.0.1"
}
},
+ "dotenv": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.0.0.tgz",
+ "integrity": "sha512-FlWbnhgjtwD+uNLUGHbMykMOYQaTivdHEmYwAKFjn6GKe/CqY0fNae93ZHTd20snh9ZLr8mTzIL9m0APQ1pjQg=="
+ },
"dottie": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.0.tgz",
@@ -23,6 +23,7 @@
"dependencies": {
"chalk": "^2.4.1",
+ "dotenv": "^6.0.0",
"moment": "^2.22.2",
"randomatic": "^3.0.0",
"sequelize": "^4.38.0",
@@ -1,5 +1,7 @@
//@flow
+require("dotenv").config();
+
const net = require("net");
const path = require("path");
const chalk = require("chalk");