From 08813b815d69a962d8b55262402f409952079094 Mon Sep 17 00:00:00 2001 From: Simon Vareille Date: Fri, 7 Feb 2020 20:07:41 +0100 Subject: [PATCH] Add config/development.js again. --- config/development.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 config/development.js diff --git a/config/development.js b/config/development.js new file mode 100755 index 0000000..4e28b5d --- /dev/null +++ b/config/development.js @@ -0,0 +1,27 @@ +'use strict'; + +module.exports = { + + mongo: { + uri: '127.0.0.1:27017/keyserver-test', + user: 'keyserver-user', + pass: 'trfepCpjhVrqgpXFWsEF' + }, + + email: { + host: 'smtp.gmail.com', + port: 465, + tls: true, + starttls: true, + pgp: true, + auth: { + user: 'user@gmail.com', + pass: 'password' + }, + sender: { + name: 'OpenPGP Key Server', + email: 'user@gmail.com' + } + } + +};