todo ; tmrw do todo.
This commit is contained in:
4
requirements.txt
Normal file
4
requirements.txt
Normal 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
11
src/app.py
Normal 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
4
src/todo.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
todo = [
|
||||||
|
"[ ] - Chat Interface",
|
||||||
|
"[ ] - User Authentication",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user