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
This commit is contained in:
parent
bdf3250fe5
commit
1ae29e8076
1 changed files with 24 additions and 3 deletions
25
.replit
25
.replit
|
|
@ -6,9 +6,9 @@ hidden = [".config", ".git", "generated-icon.png", "node_modules", "dist"]
|
||||||
channel = "stable-24_05"
|
channel = "stable-24_05"
|
||||||
|
|
||||||
[deployment]
|
[deployment]
|
||||||
deploymentTarget = "cloudrun"
|
deploymentTarget = "autoscale"
|
||||||
build = ["npm", "run", "build"]
|
build = ["npm", "run", "build"]
|
||||||
run = ["npm", "run", "start"]
|
run = ["node", "./dist/index.cjs"]
|
||||||
|
|
||||||
[[ports]]
|
[[ports]]
|
||||||
localPort = 5000
|
localPort = 5000
|
||||||
|
|
@ -16,3 +16,24 @@ externalPort = 80
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
PORT = "5000"
|
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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue