From 381c3429c64171a3523b5641bd975f2e591decfd Mon Sep 17 00:00:00 2001 From: Will Luik <> Date: Wed, 22 Jun 2022 13:25:22 +0000 Subject: [PATCH] added .replit file --- .replit | 2 ++ mydemoapp.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 00000000..60e960e4 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python3" +run = "python mydemoapp.py" diff --git a/mydemoapp.py b/mydemoapp.py index 0ee130ec..d17a0b75 100644 --- a/mydemoapp.py +++ b/mydemoapp.py @@ -4,7 +4,7 @@ @app.route("/") def hello(): - return "Hello! This is a basic Flask app. " + return "Hello! This is a basic Flask app. help " if __name__ == "__main__": app.run("0.0.0.0")