13 lines
244 B
Python
Executable File
13 lines
244 B
Python
Executable File
#!/usr/bin/env python3
|
|
from flask import Flask
|
|
from flask import render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello_world():
|
|
return render_template('index.html')
|
|
|
|
if __name__ == '__main__':
|
|
app.run(port=8080, debug=True)
|