12 lines
259 B
Python
Executable File
12 lines
259 B
Python
Executable File
from flask import Flask
|
|
from flask import render_template
|
|
app = Flask(__name__)
|
|
app.debug = True
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return render_template('hello.html', message="Hello World!")
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host='0.0.0.0', port=8080)
|