Saved progress at the end of the loop

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 77cfe984-2c65-4152-bb7a-0df28274fe66
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 1194403f-51ef-43ba-9710-3d091b4840f6
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/c3c252e4-c83d-40ca-9fff-99a3ea60701e/77cfe984-2c65-4152-bb7a-0df28274fe66/T9daF3x
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
riyadhafraa
2026-05-15 12:43:53 +00:00
parent 66e0e5697f
commit b10ee5392c
+27 -6
View File
@@ -18,18 +18,35 @@ author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "test"
args = "Start application"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "API"
[[workflows.workflow]]
name = "test"
name = "Start application"
author = "agent"
[workflows.workflow.metadata]
outputType = "console"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "pnpm test"
args = "PORT=5000 BASE_PATH=/ VITE_API_PROXY_TARGET=http://localhost:8080 pnpm --filter @workspace/tx-os run dev"
waitForPort = 5000
[workflows.workflow.metadata]
outputType = "webview"
[[workflows.workflow]]
name = "API"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "PORT=8080 pnpm --filter @workspace/api-server run dev"
waitForPort = 8080
[workflows.workflow.metadata]
outputType = "console"
[agent]
stack = "PNPM_WORKSPACE"
@@ -39,6 +56,10 @@ expertMode = true
path = "scripts/post-merge.sh"
timeoutMs = 120000
[[ports]]
localPort = 5000
externalPort = 4200
[[ports]]
localPort = 8080
externalPort = 8080