1
ewpratten.com/.vscode/tasks.json
2024-01-16 11:14:07 -05:00

43 lines
1.1 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Launch development webserver",
"type": "shell",
"command": "zola",
"args": [
"serve",
"--drafts",
"--interface",
"0.0.0.0",
"--open"
],
"problemMatcher": []
},
{
"label": "Launch development webserver (without drafts)",
"type": "shell",
"command": "zola",
"args": [
"serve",
"--interface",
"0.0.0.0",
"--open"
],
"problemMatcher": []
},
{
"label": "Initialize Python venv",
"type": "shell",
"command": "python3",
"args": [
"-m",
"venv",
".venv"
],
"problemMatcher": []
}
]
}