merge(stg): merge main into stg and resolve storage conflicts

This commit is contained in:
2026-04-23 13:48:26 +08:00
36 changed files with 17763 additions and 233 deletions

12
src/lib/minio.ts Normal file
View File

@@ -0,0 +1,12 @@
import { Client } from "minio";
const minioClient = new Client({
endPoint: process.env.MINIO_ENDPOINT!,
accessKey: process.env.MINIO_ACCESS_KEY!,
secretKey: process.env.MINIO_SECRET_KEY!,
useSSL: process.env.MINIO_USE_SSL === "true",
});
export const MINIO_BUCKET = process.env.MINIO_BUCKET!;
export default minioClient;