Add example config/development.js

This commit is contained in:
Tankred Hase 2016-06-07 14:44:54 +02:00
parent fd82d5ff78
commit 2ab6333a15

25
config/development.js Normal file
View File

@ -0,0 +1,25 @@
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'
}
}
};