seed sample-kubero from template-openeverest/starter

This commit is contained in:
backstage-seed
2026-06-24 10:13:11 +09:00
commit 083ca53b0f
13 changed files with 665 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"
}
}