From 98af0cc6c43d542cf43aa50a4b6317b6eb078f5f Mon Sep 17 00:00:00 2001 From: rattatwinko Date: Sat, 23 Aug 2025 00:39:26 +0200 Subject: [PATCH] todo ; tmrw do todo. --- requirements.txt | 4 ++++ src/app.py | 11 +++++++++++ src/todo.py | 4 ++++ 3 files changed, 19 insertions(+) create mode 100644 requirements.txt create mode 100644 src/app.py create mode 100644 src/todo.py diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..92e78ed --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +Flask>=3.1.2 +Flask-SQLAlchemy>=3.0.5 +Flask-Cache>=0.13.1 +cryptography>=45.0.6 \ No newline at end of file diff --git a/src/app.py b/src/app.py new file mode 100644 index 0000000..ec5ff68 --- /dev/null +++ b/src/app.py @@ -0,0 +1,11 @@ +from flask import Flask +from todo import todo + +app = Flask(__name__) + +@app.route('/') +def hello(): + htmlbasic= """ + + """ + return htmlbasic + "

" + str(todo) + "

" + "" \ No newline at end of file diff --git a/src/todo.py b/src/todo.py new file mode 100644 index 0000000..93c7825 --- /dev/null +++ b/src/todo.py @@ -0,0 +1,4 @@ +todo = [ + "[ ] - Chat Interface", + "[ ] - User Authentication", +] \ No newline at end of file