-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
39 lines (34 loc) · 823 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = {
name : 'building',
base_dir : __dirname,
router : {
rules : {
'/' : 'site.lodma',
'admiral' : 'site.admiral',
'building' : 'site.building',
'house' : 'site.house',
'first_person' : 'site.first_person',
'hospital' : 'site.hospital',
'lodma' : 'site.lodma',
'ember' : 'site.ember',
'remote' : 'remote.show'
}
},
preload_components : [ 'log_router' ],
cache_views : true,
components : {
log_router : {
routes : {
console : {
levels : [ 'trace', 'info', 'warning', 'error' ]
}
}
},
http : {
port : 3000,
root_folders : {
WebPlayer : 'standalone/WebPlayer'
}
}
}
}