11 lines
206 B
Python
11 lines
206 B
Python
import flask
|
|
import stravalib
|
|
|
|
app = flask.Flask(__name__)
|
|
client = stravalib.client.Client()
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return flask.render_template('index.html')
|
|
|
|
app.run(host='0.0.0.0',debug=True) |