File size: 334 Bytes
f2c197f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # Render deployment configuration
# https://render.com/docs/blueprint-spec
services:
- type: web
name: socar-hackathon
env: docker
dockerfilePath: ./Dockerfile
dockerContext: .
healthCheckPath: /health
envVars:
- key: PRODUCTION
value: "false"
- key: PYTHONUNBUFFERED
value: "1"
|