Skip to content

Commit

Permalink
thats what breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed Mar 25, 2024
1 parent dd13e2e commit cc0711b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def index():

if __name__ == '__main__':
port = int(os.environ.get("ONGOING_PORT", 9380))
print(f"Starting {os.environ.get('PROJECT_NAME').title()} server on port {port}")
print(f"Starting {os.environ.get('PROJECT_NAME', 'OnGoing').title()} server on port {port}")
if os.environ.get("FLASK_DEBUG", "False") == "True":
app.run(port=port, debug=True)
else:
Expand Down

0 comments on commit cc0711b

Please sign in to comment.