2025-04-08 21:26:33 -06:00
|
|
|
import flask
|
|
|
|
|
import stravalib
|
|
|
|
|
|
|
|
|
|
app = flask.Flask(__name__)
|
|
|
|
|
client = stravalib.client.Client()
|
|
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
|
def index():
|
|
|
|
|
return flask.render_template('index.html')
|
|
|
|
|
|
2025-04-08 21:55:58 -06:00
|
|
|
app.run(host='0.0.0.0',debug=True)
|