-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.js
41 lines (37 loc) · 825 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
40
41
config = {
http: {
hostname: 'http://ppr.cs.dal.ca',
port: 3002
},
reasoners: {
eye: {
exec: "/home/woensel/projects/n3-editor-js/opt/eye/bin/eye",
folder: "/home/woensel/projects/n3-editor-js/lib/eye"
},
cwm: {
// (use python2 for cwm)
pythonCmd: "python",
exec: "/opt/cwm-1.2.1/swap/cwm.py"
},
jen3: {
exec: "/home/woensel/projects/n3-editor-js/lib/jen3/jen3.jar",
codegen: "/home/woensel/projects/n3-editor-js/lib/jen3/codegen.jar",
folder: "/home/woensel/projects/n3-editor-js/lib/jen3"
}
},
link: {
max_len: 50000,
db: {
port: '33060',
host: 'localhost',
db: "n3_links",
user: 'root',
pwd: 'changeit'
}
},
path: "/home/woensel/projects/n3-editor-js"
}
if (typeof exports === 'object' && typeof module === 'object')
module.exports = {
config
};