Dhurgh's picture
fix(render): provision postgres and require DATABASE_URL in production
7f1f6ab
Raw
History Blame Contribute Delete
502 Bytes
databases:
- name: ultimate-chat-db
plan: free
services:
- type: web
name: ultimate-chat-app
env: node
plan: free
buildCommand: npm install
startCommand: npm start
healthCheckPath: /api/version
envVars:
- key: NODE_ENV
value: production
- key: DATABASE_URL
fromDatabase:
name: ultimate-chat-db
property: connectionString
- key: JWT_SECRET
generateValue: true
- key: CORS_ORIGIN
value: "*"