From e555eb2b4858e25c09547064cbbfee8e6e8b17c3 Mon Sep 17 00:00:00 2001 From: Nick Guy Date: Mon, 10 Jun 2024 17:46:57 +0100 Subject: [PATCH] Initial commit of project files --- .idea/.gitignore | 8 ++++++++ app.py | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 app.py diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/app.py b/app.py new file mode 100644 index 0000000..5d20a01 --- /dev/null +++ b/app.py @@ -0,0 +1,12 @@ +from flask import Flask + +app = Flask(__name__) + + +@app.route('/') +def hello_world(): # put application's code here + return 'Hello World!' + + +if __name__ == '__main__': + app.run()