ffffng/server/config.js

67 lines
1.7 KiB
JavaScript
Raw Normal View History

2014-05-12 20:08:19 +02:00
'use strict';
2016-05-20 22:38:13 +02:00
var fs = require('fs');
var deepExtend = require('deep-extend');
var defaultConfig = {
server: {
baseUrl: 'http://localhost:8080',
port: 8080,
databaseFile: '/tmp/ffffng.sqlite',
peersPath: '/tmp/peers',
email: {
from: 'Freifunk Knotenformular <no-reply@musterstadt.freifunk.net>',
// For details see: https://nodemailer.com/2-0-0-beta/setup-smtp/
smtp: {
host: 'mail.example.com',
port: '465',
secure: true,
auth: {
user: 'user@example.com',
pass: 'pass'
}
}
2016-05-20 22:38:13 +02:00
}
},
client: {
community: {
name: 'Freifunk Musterstadt',
domain: 'musterstadt.freifunk.net',
contactEmail: 'kontakt@musterstadt.freifunk.net'
},
map: {
graphUrl: 'http://graph.musterstadt.freifunk.net/graph.html',
mapUrl: 'http://graph.musterstadt.freifunk.net/geomap.html'
2014-06-06 21:22:57 +02:00
},
2016-05-20 22:38:13 +02:00
monitoring: {
enabled: true
},
coordsSelector: {
showInfo: false,
showBorderForDebugging: false,
localCommunityPolygon: [],
lat: 53.565278,
lng: 10.001389,
defaultZoom: 10
2014-06-06 21:22:57 +02:00
}
2016-05-20 22:38:13 +02:00
}
};
2016-05-20 22:38:13 +02:00
var configJSONFile = __dirname + '/../config.json';
var configJSON = {};
2016-05-20 22:38:13 +02:00
if (fs.existsSync(configJSONFile)) {
configJSON = JSON.parse(fs.readFileSync(configJSONFile, 'utf8'));
}
var config = deepExtend({}, defaultConfig, configJSON);
module.exports = config;
2016-05-20 22:38:13 +02:00
angular.module('ffffng').factory('config', function () {
return config;
2014-05-12 20:08:19 +02:00
});