From 367f63e94ec01018d26f6e03d075fa155428f99a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Mon, 5 Feb 2018 19:55:17 +0100 Subject: [PATCH] Added secret to mongo-config --- server/config/mongo_config.example.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/config/mongo_config.example.js b/server/config/mongo_config.example.js index 3ec5ef43..094d278a 100644 --- a/server/config/mongo_config.example.js +++ b/server/config/mongo_config.example.js @@ -1,5 +1,6 @@ var mongo_config = { - config: 'mydb' + config: 'mydb', + secret: "secret", }; module.exports = mongo_config;