Services
MinIO

MinIO

Installation

Install S3 service

yarn add @uplo/service-s3

Add service to Uplo

import S3Service from '@uplo/service-s3'
 
const uplo = Uplo({
  services: {
    minio: S3Service({
      isPublic: false,
      endpoint: 'https://minio.example.com',
      forcePathStyle: true,
      bucket: 'your-bucket',
      accessKeyId: '*****',
      secretAccessKey: '*****',
    }),
  },
})