Initial working!

This commit is contained in:
Sean Morley
2024-06-09 17:35:37 +00:00
parent 9ad8a4ba8e
commit 08c6708543
7 changed files with 481 additions and 11 deletions

11
src/lib/server/minio.ts Normal file
View File

@@ -0,0 +1,11 @@
import { Client } from "minio";
const minioClient = new Client({
endPoint: "localhost",
port: 9000,
useSSL: false,
accessKey: "minioadmin",
secretKey: "minioadmin",
});
export default minioClient;