Spotter-VM/openmapkit/srv/omk/settings.js

21 lines
599 B
JavaScript
Raw Normal View History

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.',
port: 8096,
dataDir: __dirname + '/data',
pagesDir: __dirname + '/pages',
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: {
user: '${OMK_ADMIN_USER}',
pass: '${OMK_ADMIN_PWD}'
}
};