mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 15:38:09 +00:00
12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
import { Client } from "minio";
|
|
|
|
export const minioClient = new Client({
|
|
endPoint: process.env.MINIO_ENDPOINT || "localhost",
|
|
port: process.env.MINIO_PORT ? parseInt(process.env.MINIO_PORT) : 9000,
|
|
useSSL: true,
|
|
accessKey: process.env.MINIO_ACCESS_KEY,
|
|
secretKey: process.env.MINIO_SECRET_KEY,
|
|
});
|
|
|
|
export const bucketName = process.env.MINIO_BUCKET || "oms-website";
|