UNPKG

518 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 = false;
14
15config.rest.components = {
16 'usermanagement': path.resolve('./src/server/usermanagement')
17};
18
19// config.client.appDir = './dist';
20module.exports = config;
\No newline at end of file