diff options
Diffstat (limited to 'config/config.js')
| -rw-r--r-- | config/config.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/config.js b/config/config.js new file mode 100644 index 0000000..5b29ec4 --- /dev/null +++ b/config/config.js @@ -0,0 +1,18 @@ +'use strict'; + +const Getenv = require('getenv'); + +const internals = {}; + +/** + * The main configuration object for Dead Drop. It will be used to + * initialize all of the sub-components. It can extend any property of + * the dead drop object. + * + * @memberof DeadDrop + * @typedef {object} tConfiguration + * @property {number} [port=1988] the port where the app will listen on + */ +module.exports = internals.Config = { + port: Getenv.int('DEAD_DROP_PORT', 1988) +}; |