From 34af7818276b568cb3578aefe6fbeaae9ceae379 Mon Sep 17 00:00:00 2001 From: Jona Neef Date: Wed, 8 Oct 2025 11:58:44 +0200 Subject: [PATCH] fix(ci): use plan ids that actually exist --- ci.dev.yml | 4 ++-- ci.prod.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci.dev.yml b/ci.dev.yml index 9318c11..1048ba3 100644 --- a/ci.dev.yml +++ b/ci.dev.yml @@ -16,7 +16,7 @@ run: steps: - name: start frontend application in dev mode command: "cd frontend && NODE_ENV=development DEBUG=true npm run dev" - plan: 4 + plan: 8 replicas: 1 isPublic: true network: @@ -26,7 +26,7 @@ run: steps: - name: deploy api endpoints command: cd backend && NODE_ENV=development npm start - plan: 4 + plan: 8 replicas: 1 isPublic: true network: diff --git a/ci.prod.yml b/ci.prod.yml index 1b8e28b..5ac8fa6 100644 --- a/ci.prod.yml +++ b/ci.prod.yml @@ -20,7 +20,7 @@ run: steps: - name: start frontend application command: "cd frontend && NODE_ENV=production npm start" - plan: 16 + plan: 8 replicas: 2 isPublic: true network: @@ -30,7 +30,7 @@ run: steps: - name: deploy api endpoints command: cd backend && NODE_ENV=production npm start - plan: 16 + plan: 8 replicas: 2 isPublic: true network: