Skip to content

Commit

Permalink
Add example config/development.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tanx committed Jun 7, 2016
1 parent fd82d5f commit 2ab6333
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions config/development.js
Original file line number Diff line number Diff line change
@@ -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: '[email protected]',
pass: 'password'
},
sender: {
name: 'OpenPGP Key Server',
email: '[email protected]'
}
}

};

0 comments on commit 2ab6333

Please sign in to comment.