Add custom S3 items

This commit is contained in:
2021-05-04 12:30:18 -05:00
parent d99fc957da
commit 811f022229
3 changed files with 85 additions and 23 deletions

View File

@@ -76,9 +76,16 @@ exports.REPERTORY_LOCATIONS = {
win32: '%LOCALAPPDATA%\\repertory',
};
exports.S3_PROVIDER_LIST = ['Filebase'];
const _S3_CUSTOM_PROVIDER = 'Custom...';
exports.S3_CUSTOM_PROVIDER = _S3_CUSTOM_PROVIDER;
exports.S3_PROVIDER_LIST = ['Filebase', _S3_CUSTOM_PROVIDER];
exports.S3_REGION_PROVIDER_REGION = ['us-east-1'];
const _S3_CUSTOM_REGION = 'Custom...';
exports.S3_CUSTOM_REGION = _S3_CUSTOM_REGION;
exports.S3_REGION_PROVIDER_REGION = [
['us-east-1', _S3_CUSTOM_REGION],
['any', _S3_CUSTOM_REGION],
];
exports.S3_PROVIDER_URL = {
Filebase: 'https://s3.filebase.com',