jsi-test-project/app.py

11 lines
211 B
Python
Raw Permalink Normal View History

2022-11-09 15:29:45 +00:00
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
2022-11-21 12:29:08 +00:00
return "Hello world! If you are reading this congratulations!"
2022-11-09 15:29:45 +00:00
2022-11-14 10:59:05 +00:00
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)