Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | import {adapter} from '@feasibleone/blong'; export default adapter<{ s3: { region?: string; endpoint?: string; credentials?: {accessKeyId: string; secretAccessKey: string}; forcePathStyle?: boolean; }; bucket?: {Bucket?: string}; }>(() => ({ extends: 'adapter.s3', activation: { default: { s3: { region: 'us-east-1', endpoint: 'http://localhost:9000', credentials: { accessKeyId: 'blong-admin', secretAccessKey: 'password', }, forcePathStyle: true, }, bucket: {Bucket: 'blong-integration'}, namespace: 'storage', imports: [], }, }, })); |