1# See https://cloud.google.com/appengine/docs/flexible/nodejs/reference/app-yaml 2 3runtime: nodejs 4env: flex 5 6handlers: 7 - url: /.* 8 script: app.js 9 secure: always 10 11resources: 12 cpu: 1 13 memory_gb: 1 14 15liveness_check: 16 path: "/health" 17 18readiness_check: 19 path: "/health" 20 app_start_timeout_sec: 600 21 22env_variables: 23 NODE_ENV: "production" 24 25