Files
FTCWebsite/.replit
abhiramtx 48eda8b04f Update website design and add new content sections
Refine UI by removing blue hover effects, increasing background gradient prominence, and disabling header underline animations. Add four new value cards under the mission statement and restructure the "Meet Our Team" section to be responsive with text on the left and image on the right. Update `replit.md` for documentation and `static/js/scripts.js` to replace `lenis.update()` with `lenis.resize()` in the `ScrollTrigger` refresh event listener.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: cc61dc1c-ba8e-4081-8489-ced839534af9
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/UhOas7p
2025-11-08 22:33:41 +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 = 37899
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