finished conversion to tailwind
This commit is contained in:
parent
6e2843c60e
commit
d62956d465
50 changed files with 2490 additions and 1273 deletions
15
.vscode/launch.json
vendored
Normal file
15
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Python: Django",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/manage.py",
|
||||
"args": ["runserver"],
|
||||
"django": true,
|
||||
"justMyCode": true,
|
||||
"preLaunchTask": "Run db"
|
||||
}
|
||||
]
|
||||
}
|
||||
26
.vscode/tasks.json
vendored
26
.vscode/tasks.json
vendored
|
|
@ -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": []
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue