Checkpoint before assistant change: Configure the web server to properly direct outside traffic to the application

Adds port configurations to the .replit file, mapping external port 80 to local port 5000.

Replit-Commit-Author: Assistant
This commit is contained in:
wandermottasiqu
2025-06-08 20:26:05 +00:00
parent e93b0e206f
commit f17ed3885d

View File

@@ -26,3 +26,7 @@ waitForPort = 5000
[deployment]
run = ["sh", "-c", "python3 -m http.server 5000"]
[[ports]]
localPort = 5000
externalPort = 80