Files
FTCWebsite/.replit
abhiramtx befc3160be Saved your changes before starting work
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 6d4dbe7c-69e4-4510-bd62-638ff9c78d5c
2025-11-08 22:13:45 +00:00

45 lines
702 B
Plaintext

modules = ["web", "python-3.12", "postgresql-16"]
run = "python3 app.py"
[nix]
channel = "stable-24_05"
[deployment]
run = ["sh", "-c", "python3 app.py"]
deploymentTarget = "cloudrun"
[[ports]]
localPort = 5000
externalPort = 80
[[ports]]
localPort = 44245
externalPort = 3000
[agent]
expertMode = true
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Flask Server"
[[workflows.workflow]]
name = "Flask Server"
author = "agent"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python app.py"
waitForPort = 5000
[workflows.workflow.metadata]
outputType = "webview"