summaryrefslogtreecommitdiff
path: root/.fleet/run.json
blob: 9567f9a9ffe4a17b1d17f2d66a734d05fb8da698 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "configurations": [
        {
            "type": "command",
            "name": "Hugo(Serve)",
            "program": "/bin/hugo",
            "args": ["serve"],
            "pty": true,
        },
        {
            "type": "command",
            "name": "Hugo(Build)",
            "program": "/bin/hugo",
            "args": [],
            "pty": true,
        },
    ]
}