From f1a498bfad3667a2f429e1bfc9a85079b0a08fb8 Mon Sep 17 00:00:00 2001 From: Rose Koron Date: Mon, 2 Feb 2026 16:00:48 -0800 Subject: [PATCH 1/3] Update example blueprint with new plans and runtime key --- render.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/render.yaml b/render.yaml index 76028fa..8b29e95 100644 --- a/render.yaml +++ b/render.yaml @@ -3,11 +3,11 @@ previews: expireAfterDays: 3 services: - type: web - plan: standard + plan: free previews: plan: starter name: express-backend - env: node + runtime: node buildCommand: cd backend && yarn startCommand: cd backend && yarn start envVars: @@ -20,7 +20,7 @@ services: property: connectionString - type: web name: render-todo - env: static + runtime: static buildCommand: cd frontend && yarn install && yarn build staticPublishPath: ./frontend/build envVars: @@ -33,5 +33,5 @@ databases: - name: postgres_db databaseName: test_db user: test_user - plan: standard + plan: free previewPlan: starter From 7b9bcdd05adc984bcf61d04386a0190e3ba9d81a Mon Sep 17 00:00:00 2001 From: Rose Koron Date: Mon, 2 Feb 2026 16:21:33 -0800 Subject: [PATCH 2/3] Also nailing down valid node version --- render.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/render.yaml b/render.yaml index 8b29e95..415eec3 100644 --- a/render.yaml +++ b/render.yaml @@ -24,6 +24,8 @@ services: buildCommand: cd frontend && yarn install && yarn build staticPublishPath: ./frontend/build envVars: + - key: NODE_VERSION + value: 16 - key: REACT_APP_API_HOST fromService: type: web From dbb911739600b6719c5579814324015cdff086bf Mon Sep 17 00:00:00 2001 From: Rose Koron Date: Mon, 2 Feb 2026 17:00:46 -0800 Subject: [PATCH 3/3] Update example database plan to work --- render.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render.yaml b/render.yaml index 415eec3..9df9ddf 100644 --- a/render.yaml +++ b/render.yaml @@ -36,4 +36,4 @@ databases: databaseName: test_db user: test_user plan: free - previewPlan: starter + previewPlan: basic-256mb