Skip to content

Commit

Permalink
Add http to tornadoe startup log
Browse files Browse the repository at this point in the history
* This allows ctrl+click in terminal to open the web page

Signed-off-by: Ryan Friedman <25047695+Ryanf55@users.noreply.github.com>
  • Loading branch information
Ryanf55 committed Nov 8, 2024
1 parent 234070e commit 8109ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/cesium_web_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def start_app(config, module_callback):
server = tornado.httpserver.HTTPServer(application)
server.listen(port = int(config.SERVER_PORT), address = str(config.SERVER_INTERFACE))
if config.APP_DEBUG:
print("Starting Tornado server: {0}".format(config.SERVER_INTERFACE+":"+config.SERVER_PORT+"/"+config.APP_PREFIX))
print("Starting Tornado server: http://{0}".format(config.SERVER_INTERFACE+":"+config.SERVER_PORT+"/"+config.APP_PREFIX))
return server

def close_all_websockets():
Expand Down

0 comments on commit 8109ec7

Please sign in to comment.