Rewritten to use TailwindCSS and HTMX 🔥

This commit is contained in:
ForeverPyrite
2025-05-08 01:35:18 -04:00
parent 14b320bbde
commit b5a2b4e6d1
19 changed files with 590 additions and 571 deletions

50
.vscode/launch.json vendored
View File

@@ -1,26 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Flask",
"type": "debugpy",
"request": "launch",
"cwd": "./app",
"module": "flask",
"env": {
"FLASK_APP": "./app.py",
"FLASK_DEBUG": "1"
},
"args": [
"run",
"--debug",
"--no-reload"
],
"jinja": true,
"autoStartBrowser": false
}
]
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Flask",
"type": "debugpy",
"request": "launch",
"cwd": "./app",
"module": "flask",
"env": {
"FLASK_APP": "./app.py",
"FLASK_DEBUG": "1"
},
"args": [
"run",
"--debug",
"--no-reload"
],
"jinja": true,
"autoStartBrowser": false
}
]
}