24
1
Fork 0
drop.chapril.org-firefoxsend/server/config.js

57 lines
1009 B
JavaScript
Raw Normal View History

const convict = require('convict');
2017-06-09 19:44:12 +02:00
const conf = convict({
2017-06-07 08:52:56 +02:00
s3_bucket: {
format: String,
2017-06-24 05:01:32 +02:00
default: '',
env: 'S3_BUCKET'
2017-06-07 08:52:56 +02:00
},
redis_host: {
format: String,
default: 'localhost',
env: 'REDIS_HOST'
2017-06-07 08:52:56 +02:00
},
listen_port: {
format: 'port',
default: 1443,
arg: 'port',
env: 'PORT'
},
analytics_id: {
format: String,
2017-06-24 05:01:32 +02:00
default: '',
env: 'GOOGLE_ANALYTICS_ID'
},
2017-06-22 23:50:57 +02:00
sentry_id: {
format: String,
2017-06-24 05:01:32 +02:00
default: '',
env: 'SENTRY_CLIENT'
2017-06-23 19:53:11 +02:00
},
sentry_dsn: {
format: String,
2017-06-24 05:01:32 +02:00
default: '',
env: 'SENTRY_DSN'
2017-06-22 23:50:57 +02:00
},
env: {
2017-06-19 23:34:12 +02:00
format: ['production', 'development', 'test'],
default: 'development',
env: 'NODE_ENV'
2017-07-20 21:50:20 +02:00
},
max_file_size: {
format: Number,
2017-07-22 02:01:26 +02:00
default: 1024 * 1024 * 1024 * 2,
env: 'MAX_FILE_SIZE'
},
expire_seconds: {
format: Number,
default: 86400,
env: 'EXPIRE_SECONDS'
}
});
// Perform validation
conf.validate({ allowed: 'strict' });
2017-06-09 19:44:12 +02:00
const props = conf.getProperties();
module.exports = props;