init: Node starter (podman dev + Coolify deploy, Claude agent 골격)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
0310700
2026-06-14 16:20:37 +09:00
commit e293f2cb87
14 changed files with 284 additions and 0 deletions

17
.env.example Normal file
View File

@@ -0,0 +1,17 @@
# .env.example — 복사해서 .env 로 쓰세요: cp .env.example .env
# 주의: .env 는 git에 올리지 마세요(.gitignore에 포함됨).
# --- DB ---
# 워크스페이스에 DATABASE_URL 이 이미 export 되어 있으면 비워둬도 됨(자동 사용).
# DATABASE_URL=postgresql://emp_<사번>:<pw>@coolify-db.aidev.svc.cluster.local:5432/appdb?search_path=emp_<사번>
# --- MinIO / S3 ---
# endpoint 는 콘솔(minioc)이 아니라 API 호스트(minio)입니다.
S3_ENDPOINT=https://minio.bokdev.in
S3_REGION=us-east-1
S3_BUCKET=coolify-user-data
S3_ACCESS_KEY_ID=REPLACE_WITH_YOUR_MINIO_ACCESS_KEY
S3_SECRET_ACCESS_KEY=REPLACE_WITH_YOUR_MINIO_SECRET_KEY
# --- 앱 ---
PORT=3000