Spotter-VM/lxc-apps/openmapkit/install/omk_conf/settings.js

21 lines
622 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: 8080,
dataDir: __dirname + '/data',
2018-09-03 16:00:39 +02:00
pagesDir: __dirname + '/frontend/build',
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}'
}
};