23 lines
661 B
JSON
23 lines
661 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Живой предпросмотр (localhost:8000)",
|
|
"type": "shell",
|
|
"command": "make live"
|
|
},
|
|
{
|
|
"label": "Собрать статический сайт (./site)",
|
|
"type": "shell",
|
|
"command": "make site"
|
|
},
|
|
{
|
|
"label": "Собрать docker-образ со стат. сайтом",
|
|
"type": "shell",
|
|
"command": "make image"
|
|
}
|
|
]
|
|
}
|