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

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "sample",
"version": "0.1.0",
"description": "사내 Node 샘플 — 로컬 node 실행 + Kubero(buildpack) 배포",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "node --watch src/server.js",
"start": "node index.js",
"db:check": "node scripts/check-db.js",
"minio:check": "node scripts/check-minio.js"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.700.0",
"express": "^4.21.2",
"pg": "^8.13.1"
}
}