Files
FTCWebsite/.replit
abhiramtx 5c5d292baa Increase the layering of text elements to appear above shadows
Update the z-index of the hr element in static/css/styles.css from 2 to 3.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 75bceff7-98f2-4f6e-ae8e-e735399a1fe8
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: e2383f0b-85bc-4fec-a5fb-97d8cfc60052
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/75bceff7-98f2-4f6e-ae8e-e735399a1fe8/gDLrEBI
2025-11-09 04:27:21 +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 = 37833
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.metadata]
outputType = "webview"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "python app.py"
waitForPort = 5000