Print link with access token to stderr

This commit is contained in:
Paul Brinkmeier 2023-08-21 14:14:47 +02:00
parent f308bca1fb
commit fe81014794

View File

@ -43,5 +43,7 @@ def create_app():
return render_template("index.html")
print(f"Jon started. Token: {auth.ACCESS_TOKEN}", file=sys.stderr)
# TODO: Get host and port from config
print(f"http://localhost:5000/?token={auth.ACCESS_TOKEN}", file=sys.stderr)
return app