jsi-test-project/app.py

11 lines
211 B
Python

from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "Hello world! If you are reading this congratulations!"
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)