diff --git a/backend/app.py b/backend/app.py new file mode 100644 index 0000000000000000000000000000000000000000..a266c8c11688f7a0e6d346950039399d84f3c1f5 --- /dev/null +++ b/backend/app.py @@ -0,0 +1,10 @@ +from flask import Flask, jsonify + +app = Flask(__name__) + +@app.route("/", methods=["GET"]) +def index(): + return jsonify({"message": "Hello, Flask!"}) + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5000) diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..53f81c7ae001b96858db680b9ef0c608fad2e309 Binary files /dev/null and b/backend/requirements.txt differ