]> git.r.bdr.sh - rbdr/lgtm/blob - config/config.js
LGTM-1 Create Initial Design
[rbdr/lgtm] / config / config.js
1 'use strict';
2
3 const Getenv = require('getenv');
4
5 const internals = {};
6
7 module.exports = internals.Config = {
8 port: Getenv.int('LGTM_PORT', 1728),
9 staticDirectory: Getenv('LGTM_STATIC_DIRECTORY', 'static')
10 };