UNPKG

397 BJavaScriptView Raw
1/*jshint node: true*/
2/**
3 * @author kecso / https://github.com/kecso
4 */
5
6var config = require('webgme/config/config.default'),
7 path = require('path');
8
9config.server.port = 8888;
10
11config.authentication.enable = true;
12
13config.rest.components = {
14 'usermanagement': path.resolve('./src/server/usermanagement')
15};
16
17//config.client.appDir = './dist';
18module.exports = config;
\No newline at end of file