From 1ae29e807607aa6b997dc57dd2b55fc4bc284c63 Mon Sep 17 00:00:00 2001 From: mrcalumamuir <51575299-mrcalumamuir@users.noreply.replit.com> Date: Sun, 21 Dec 2025 10:36:30 +0000 Subject: [PATCH] Saved progress at the end of the loop Replit-Commit-Author: Agent Replit-Commit-Session-Id: 6c8ae573-cc16-4c2c-a8f2-14d35b5cf68f Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 116abe33-6748-4eaf-8a05-e17accbbbb35 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8fb72399-555c-4fd5-bb7e-eef11ff2f027/6c8ae573-cc16-4c2c-a8f2-14d35b5cf68f/yJZy0Cc Replit-Helium-Checkpoint-Created: true --- .replit | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/.replit b/.replit index 2d029dc..504daed 100644 --- a/.replit +++ b/.replit @@ -6,13 +6,34 @@ hidden = [".config", ".git", "generated-icon.png", "node_modules", "dist"] channel = "stable-24_05" [deployment] -deploymentTarget = "cloudrun" +deploymentTarget = "autoscale" build = ["npm", "run", "build"] -run = ["npm", "run", "start"] +run = ["node", "./dist/index.cjs"] [[ports]] localPort = 5000 externalPort = 80 [env] -PORT = "5000" \ No newline at end of file +PORT = "5000" + +[workflows] +runButton = "Project" + +[[workflows.workflow]] +name = "Project" +mode = "parallel" +author = "agent" + +[[workflows.workflow.tasks]] +task = "workflow.run" +args = "Start application" + +[[workflows.workflow]] +name = "Start application" +author = "agent" + +[[workflows.workflow.tasks]] +task = "shell.exec" +args = "npm run dev" +waitForPort = 5000