First working prototype of the keyserver

This commit is contained in:
Tankred Hase
2016-05-27 19:57:48 +02:00
parent 439ab77422
commit 2d07c34060
15 changed files with 664 additions and 167 deletions

10
config/default.js Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = {
server: {
port: process.env.PORT || 8888,
},
log: {
level: "silly"
}
};

7
config/production.js Normal file
View File

@@ -0,0 +1,7 @@
'use strict';
module.exports = {
log: {
level: "error"
}
};