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