From 70a8e4e17e7273299cd30f6bf3d8a9dd7aef7ac6 Mon Sep 17 00:00:00 2001 From: crybabbby Date: Thu, 14 May 2026 21:28:00 +0300 Subject: [PATCH] Switch to Python Flask app for testing --- Staticfile | 1 - app.py | 12 ++++++++++++ index.html | 27 --------------------------- requirements.txt | 1 + 4 files changed, 13 insertions(+), 28 deletions(-) delete mode 100644 Staticfile create mode 100644 app.py delete mode 100644 index.html create mode 100644 requirements.txt diff --git a/Staticfile b/Staticfile deleted file mode 100644 index 1707055..0000000 --- a/Staticfile +++ /dev/null @@ -1 +0,0 @@ -push_state: enabled diff --git a/app.py b/app.py new file mode 100644 index 0000000..09fe3c9 --- /dev/null +++ b/app.py @@ -0,0 +1,12 @@ +from flask import Flask +import os + +app = Flask(__name__) + +@app.route('/') +def hello(): + return "Hello from Python Flask app deployed via your platform!" + +if __name__ == '__main__': + port = int(os.environ.get('PORT', 8080)) + app.run(host='0.0.0.0', port=port) diff --git a/index.html b/index.html deleted file mode 100644 index 1ad80f9..0000000 --- a/index.html +++ /dev/null @@ -1,27 +0,0 @@ -

DIPLOMA WORKS!

-build test Wed May 13 21:27:57 MSK 2026 --> -

✅ Wed May 13 22:08:14 MSK 2026

-

Wed May 13 22:13:21 MSK 2026

-

Wed May 13 22:18:08 MSK 2026

-

🎓 DIPLOMA SUCCESS Wed May 13 22:29:26 MSK 2026

-

🎓 WORKS Wed May 13 22:41:05 MSK 2026

-

🎓 WORKS Wed May 13 22:45:30 MSK 2026

-

✅ API FIX Wed May 13 22:50:39 MSK 2026

-

suka rabotay

-

✅ NEVER PULL Wed May 13 22:59:48 MSK 2026

-up.. -up.. -

🎓 API FIX WORKS Wed May 13 23:27:42 MSK 2026

-update.... -update.... -update.... -please... -update.... -blya.. -last wish -last wish -update -4545 -12341234 -diploma v1 -123123 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0da3845 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +flask==2.3.3