14 lines
No EOL
233 B
Python
14 lines
No EOL
233 B
Python
#!/bin/python3
|
|
|
|
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def index():
|
|
#return render_template("index.html")
|
|
return "TEST"
|
|
|
|
|
|
app.run(host="127.0.0.1", port=5000)
|
|
appFlask.run(debug=True) |