UNPKG

561 BJavaScriptView Raw
1
2var Path = require( 'path' );
3
4module.exports = {
5 fast : {
6 siteName : "Example App",
7 apiRoot : Path.join( __dirname, "api" ),
8 servicesPath : Path.join( __dirname, "services" ),
9 enableWebSocket : true,
10 socketKey : "user",
11 extraModules : "models",
12 db : [
13 {
14 type: "couchbase",
15 login: {
16 host : 'localhost',
17 port : 8091,
18 bucket : "users"
19 }
20
21 },{
22 type: "couchbase",
23 login : {
24 host : 'localhost',
25 port : 8091,
26 bucket : "private_messages"
27 }
28 }
29 ]
30 },
31
32 app : {
33 port : 3000
34
35 }
36};
\No newline at end of file