From 1420e2ee0c3cf9ad5b3bb683d06331fa65ff6af9 Mon Sep 17 00:00:00 2001 From: CHUCK <204468377+drainch@users.noreply.github.com> Date: Wed, 23 Apr 2025 13:30:54 +0000 Subject: [PATCH] meow --- app.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app.py diff --git a/app.py b/app.py new file mode 100644 index 0000000..46ef4a2 --- /dev/null +++ b/app.py @@ -0,0 +1,18 @@ +from flask import Flask +app = Flask(__name__) + +@app.route('/') +def home(): + return """ + +
You're not dreaming. You're building the system that breaks them all.
+This is a live Codespace interface.
+ + + """ + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=8000)