smolEditWeb/.replit
2024-09-21 16:54:43 +00:00

57 lines
938 B
Plaintext

modules = ["python-3.11"]
[nix]
channel = "stable-24_05"
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Start Flask App"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Flask Server"
[[workflows.workflow]]
name = "Start Flask App"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python main.py"
waitForPort = 5000
[[workflows.workflow]]
name = "Flask Server"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python main.py"
waitForPort = 5000
[deployment]
run = ["sh", "-c", "python main.py"]
deploymentTarget = "cloudrun"
[[ports]]
localPort = 80
externalPort = 3000
[[ports]]
localPort = 5000
externalPort = 80