File size: 371 Bytes
25ae7fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Render.com Deployment Configuration
# https://render.com
services:
- type: web
name: meih-movies-api
env: docker
dockerfilePath: ./Dockerfile
dockerContext: ./backend
plan: free
region: oregon
envVars:
- key: PYTHON_VERSION
value: 3.11
- key: PORT
value: 7860
healthCheckPath: /health
autoDeploy: true
|