Files
eene_dashboard/render.yaml
EENE Dashboard 22366dde72 Initial commit - EENE Dashboard
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-29 18:07:10 +09:00

25 lines
660 B
YAML

services:
- type: web
name: eene-dashboard-backend
runtime: node
rootDir: backend
buildCommand: npm install && npm run build && npx prisma generate
startCommand: npm start
envVars:
- key: DATABASE_URL
sync: false # Render 대시보드에서 직접 입력
- key: PORT
value: 4000
- key: FRONTEND_URL
sync: false # Vercel 배포 후 주소 입력
- key: JWT_SECRET
generateValue: true
- key: JWT_EXPIRES_IN
value: 7d
- key: UPLOAD_DIR
value: ./uploads
- key: MAX_FILE_SIZE_MB
value: 20
- key: NODE_ENV
value: production