-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.js
More file actions
35 lines (33 loc) · 996 Bytes
/
config.js
File metadata and controls
35 lines (33 loc) · 996 Bytes
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
configuration = {
listen_port: 9500,
server_timeout : 18000000, // 30 min (prevent 502 Bad Gateway)
rasterdir: 'rasterdir/',
vectordir: 'vectordir/',
py_modules_dir: 'thirdparty/',
bn_commands_dir : 'blumap/',
command_run_inference : 'blumap',
command_get_info : 'net2json',
command_vectornodes : 'vectornodes',
output_dir : 'results',
max_BN_files : 10,
max_raster_files: 16,
gui: {
evidences: 15,
},
tmp_dir : '/tmp/blumap', // directory to decompress vector files
// Application URL. Used for the link sent via e-mail for user verification. Change it for local developments
//url: 'http://localhost:9500',
url: 'http://gbay.ethz.ch',
amilfrom: 'MAILFROM'
mail_settings : {
host: 'HOST',
auth: {
user: 'USER',
pass: 'PASSWORD'
}
},
historial_filename: 'history.log',
readme: 'docs/README.txt', // file to be included in the .zip file with all the iutputs
netica_license_filename: 'PATH_TO_LICENSE',
}
module.exports = configuration;