11 lines
206 B
Python
11 lines
206 B
Python
from flask import Flask, redirect, render_template
|
|
|
|
app = Flask(__name__)
|
|
PORT = 8080
|
|
|
|
@app.route("/")
|
|
def home():
|
|
return render_template("index.html")
|
|
|
|
if __name__ == "__main__":
|
|
app.run(port=PORT) |