13 lines
242 B
Python
13 lines
242 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def hello():
|
|
return render_template('index.html')
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='127.0.0.1', port=8080, debug=True)
|
|
# [END gae_python37_app]
|