todo ; tmrw do todo.

This commit is contained in:
2025-08-23 00:39:26 +02:00
parent 1cb1c12bb2
commit 98af0cc6c4
3 changed files with 19 additions and 0 deletions

4
requirements.txt Normal file
View File

@@ -0,0 +1,4 @@
Flask>=3.1.2
Flask-SQLAlchemy>=3.0.5
Flask-Cache>=0.13.1
cryptography>=45.0.6

11
src/app.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import Flask
from todo import todo
app = Flask(__name__)
@app.route('/')
def hello():
htmlbasic= """
<body style="background-color: #121212; color: #FFFFFF; font-family: Arial, sans-serif;">
"""
return htmlbasic + "<p>" + str(todo) + "</p>" + "</body>"

4
src/todo.py Normal file
View File

@@ -0,0 +1,4 @@
todo = [
"[ ] - Chat Interface",
"[ ] - User Authentication",
]