initial commit

Change-Id: I80f911b3ee68264927839ebee517d37bc3b71c9b
This commit is contained in:
Scaffolder
2026-06-24 07:04:35 +00:00
commit 1b122886f9
14 changed files with 688 additions and 0 deletions

10
scripts/check-minio.js Normal file
View File

@@ -0,0 +1,10 @@
// MinIO(S3) 연결 빠른 확인: `npm run minio:check`
// 먼저 ~/.config 또는 .env 에서 S3_ACCESS_KEY_ID / S3_SECRET_ACCESS_KEY 를 채워야 함.
import { pingS3 } from "../src/s3.js";
try {
console.log("S3 OK:", await pingS3());
} catch (e) {
console.error("S3 FAIL:", e.message);
process.exitCode = 1;
}