1

Update dev shortcut

This commit is contained in:
Evan Pratten 2024-11-27 19:19:31 -05:00
parent c49f34b934
commit c14ad6a117

10
.vscode/tasks.json vendored
View File

@ -6,16 +6,14 @@
{ {
"label": "Launch development webserver (ewpratten.com)", "label": "Launch development webserver (ewpratten.com)",
"type": "shell", "type": "shell",
"command": "zola", "command": "docker",
"options": { "options": {
"cwd": "${workspaceFolder}" "cwd": "${workspaceFolder}"
}, },
"args": [ "args": [
"serve", "compose",
"--drafts", "up",
"--interface", "--build"
"0.0.0.0",
"--open"
], ],
"problemMatcher": [] "problemMatcher": []
} }