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