2017-12-12 05:48:36 +01:00
module . exports = {
name : 'OpenMapKit Server' ,
description : 'OpenMapKit Server is the lightweight server component of OpenMapKit that handles the collection and aggregation of OpenStreetMap and OpenDataKit data.' ,
2018-03-25 23:17:58 +02:00
port : 8080 ,
2017-12-12 05:48:36 +01:00
dataDir : _ _dirname + '/data' ,
2018-09-03 16:00:39 +02:00
pagesDir : _ _dirname + '/frontend/build' ,
2017-12-12 05:48:36 +01:00
hostUrl : 'http://posm.io' ,
osmApi : {
server : 'http://osm.posm.io' ,
user : 'POSM' ,
pass : ''
} ,
// To do simple authentication, you can have an object like so:
auth : {
2018-04-21 23:10:55 +02:00
user : '${OPENMAPKIT_ADMIN_USER}' ,
pass : '${OPENMAPKIT_ADMIN_PWD}'
2017-12-12 05:48:36 +01:00
}
} ;