Files
FTCWebsite/.replit
abhiramtx f4d32ff9ee Ensure uploaded images are permanently stored in object storage
Integrates Replit Object Storage for persistent file uploads, replacing ephemeral local storage and adding `google-cloud-storage` dependency.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: cd9a7d26-a4e5-4215-975c-c59f4ed1f06d
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 093bebfc-3b06-4716-8c6a-2dea6a89816d
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/cd9a7d26-a4e5-4215-975c-c59f4ed1f06d/D3TcT39
2025-11-13 05:36:58 +00:00

49 lines
751 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 = 37833
externalPort = 3000
[[ports]]
localPort = 41733
externalPort = 3001
[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.metadata]
outputType = "webview"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python app.py"
waitForPort = 5000