mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
import AWS from 'aws-sdk';
|
|
import nconf from 'nconf';
|
|
|
|
export const S3 = new AWS.S3({
|
|
accessKeyId: nconf.get('S3:accessKeyId'),
|
|
secretAccessKey: nconf.get('S3:secretAccessKey'),
|
|
});
|