UNPKG

617 BJavaScriptView Raw
1/* jshint node: true*/
2/**
3 * @author patrickkerrypei / https://github.com/patrickkerrypei
4 */
5
6var config = require('webgme/config/config.default'),
7 path = require('path');
8
9config.server.port = 8888;
10config.mongo.uri = 'mongodb://127.0.0.1:27017/multi';
11
12config.authentication.enable = true;
13config.authentication.allowGuests = true;
14
15config.authentication.userManagementPage = path.join(__dirname, '../src/server/usermanagement');
16
17config.rest.components = {
18 usermanagement: path.resolve('./src/server/usermanagement')
19};
20
21// config.client.appDir = './dist';
22module.exports = config;