]> git.r.bdr.sh - rbdr/lgtm/blame_incremental - config/config.js
Use a template instead of static html index
[rbdr/lgtm] / config / config.js
... / ...
CommitLineData
1'use strict';
2
3const Getenv = require('getenv');
4
5const internals = {};
6
7module.exports = internals.Config = {
8 port: Getenv.int('LGTM_PORT', 1728),
9 staticDirectory: Getenv('LGTM_STATIC_DIRECTORY', 'static'),
10 templateDirectory: Getenv('LGTM_TEMPLATE_DIRECTORY', 'templates')
11};