UNPKG

437 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 = 9001;
10config.mongo.uri = 'mongodb://127.0.0.1:27017/webgme-usermanagement-test';
11
12config.authentication.enable = true;
13
14config.rest.components = {
15 'usermanagement': path.resolve('./src/server/usermanagement')
16};
17
18module.exports = config;
\No newline at end of file