~hatch/juju-gui/charm-inspector

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var config = {
  'server': {
    'port': 8888,
    'public_hostname': 'localhost',
    'template_dirs': [
      __dirname + '/app/templates/',
      __dirname + '/app/subapps/browser/templates/'
    ],
    'view_dirs': [
      __dirname + '/lib/views/',
      __dirname + '/lib/views/browser'
    ],
    'public_dir': __dirname + '/app'
  }
};

exports.config = config;