aboutsummaryrefslogtreecommitdiff
path: root/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'index.ts')
-rw-r--r--index.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/index.ts b/index.ts
index e2146cd..eec102d 100644
--- a/index.ts
+++ b/index.ts
@@ -6,10 +6,13 @@ import app from './app';
mongoose.Promise = Promise;
-const MONGODB_URL = process.env.MONGODB_URI || 'mongodb://localhost:27017/which';
const PORT = process.env.PORT || 3030;
+const MONGODB_URL = process.env.MONGODB_URI || 'mongodb://localhost:27017/which';
+const { MONGODB_USER, MONGODB_PASSWORD } = process.env;
mongoose.connect(MONGODB_URL, {
+ user: MONGODB_USER,
+ pass: MONGODB_PASSWORD,
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,