{
    // 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": []
        }
    ]
}