finished conversion to tailwind

This commit is contained in:
badblocks 2025-03-11 23:45:27 -07:00
parent 6e2843c60e
commit d62956d465
50 changed files with 2490 additions and 1273 deletions

26
.vscode/tasks.json vendored
View file

@ -5,24 +5,24 @@
"label": "Reset DB, Make Migrations, And Seed Data",
"type": "shell",
"command": "./reset-db_make-migrations_seed-data.sh",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Run app",
"label": "Run app & db",
"type": "shell",
"command": "./entrypoint.sh",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
"label": "Run tailwind dev server",
"type": "shell",
"command": "cd theme/static_src && npm run dev",
"problemMatcher": [],
},
{
"label": "Run db",
"type": "shell",
"command": "docker compose up -d",
"problemMatcher": []
}
]