UNPKG

413 BJavaScriptView Raw
1var config = {};
2
3// AWS s3 config
4config.aws = {};
5config.aws.bucket_name = process.env.AWS_BUCKET_NAME || 'aws_bucket_name';
6config.aws.access_key = process.env.AWS_ACCESS_KEY_ID || 'aws_access_key';
7config.aws.secret_key = process.env.AWS_SECRET_ACCESS_KEY || 'aws_secret_key';
8
9// portal config
10config.portal = {};
11config.portal.hostname = process.env.PORTAL_HOST || '10.0.2.2:8080';
12
13module.exports = config;
\No newline at end of file