Update app.py

This commit is contained in:
Gagan 2025-03-16 13:45:59 +05:30 committed by GitHub
parent c1388dfed1
commit 17d1d29ab8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

2
app.py
View file

@ -14,5 +14,5 @@ def welcome():
if __name__ == "__main__":
# Default to port 5000 if PORT is not set in the environment
port = int(os.environ.get("PORT", 8000))
port = int(os.environ.get("PORT", 5000))
app.run(host="0.0.0.0", port=port)