42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/* exports.database = {
|
|
type: 'mongodb',
|
|
hostname: 'localhost',
|
|
port: 27017,
|
|
database: 'scrumblr'
|
|
};
|
|
*/
|
|
|
|
const { argv } = require('yargs').usage(
|
|
'Usage: $0 [--port INTEGER [8080]] \
|
|
[--baseurl STRING ["/"]] \
|
|
[--redis STRING:INT [127.0.0.1:6379]] \
|
|
[--gaEnabled] \
|
|
[--gaAccount STRING [UA-2069672-4]] \
|
|
[--headerBarUrl STRING] \
|
|
[--logoUrl STRING] \
|
|
[--faviconUrl STRING] \ '
|
|
|
|
)
|
|
|
|
exports.server = {
|
|
port: argv.port || 8080,
|
|
baseurl: argv.baseurl || '/'
|
|
}
|
|
|
|
exports.googleanalytics = {
|
|
enabled: argv.gaEnabled || false,
|
|
account: argv.gaAccount || 'UA-2069672-4'
|
|
}
|
|
|
|
const redis_conf = argv.redis || '127.0.0.1:6379'
|
|
exports.database = {
|
|
sock: argv.sock || false,
|
|
type: 'redis',
|
|
prefix: '#scrumblr#',
|
|
host: redis_conf.split(':')[0] || '127.0.0.1',
|
|
port: redis_conf.split(':')[1] || 6379
|
|
}
|
|
|
|
exports.headerBarUrl = argv.headerBarUrl || null /* example url with appropriate json markup : 'https://colibris-lemouvement.org/archipel-markup?domain=colibris-outilslibres.org' */
|
|
exports.logoUrl = argv.logoUrl || null /* example logo url : 'https://postit.colibris-outilslibres.org/images/logo-Post-it.svg' */
|
|
exports.faviconUrl = argv.faviconUrl || null /* example favicon url : 'https://postit.colibris-outilslibres.org/images/favicon.png' */
|