added stuff + monitoring (to logfile)
This commit is contained in:
BIN
python/flask_scripting/__pycache__/flask.cpython-313.pyc
Normal file
BIN
python/flask_scripting/__pycache__/flask.cpython-313.pyc
Normal file
Binary file not shown.
12
python/flask_scripting/app.py
Normal file
12
python/flask_scripting/app.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from flask import Flask
|
||||
# from flask import render_template
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route("/")
|
||||
def init():
|
||||
return "<h1>Hello, World!</h1>"
|
||||
|
||||
|
||||
app.run(host="127.0.0.1", port=5000)
|
||||
Reference in New Issue
Block a user