add devinit and devcontainer files

This commit is contained in:
KELLY FAM 2020-10-29 12:46:04 -07:00
Родитель bf641fa6a0
Коммит d1439b2ea0
2 изменённых файлов: 38 добавлений и 0 удалений

3
.devcontainer.json Normal file
Просмотреть файл

@ -0,0 +1,3 @@
{
"postCreateCommand": "devinit init"
}

35
.devinit.json Normal file
Просмотреть файл

@ -0,0 +1,35 @@
{
"$schema": "https://json.schemastore.org/devinit.schema-2.0",
"run": [
{
"comments": "Installs the body-parser package.",
"tool": "npm-install",
"input": "body-parser"
},
{
"comments": "Installs the cookie-parser package.",
"tool": "npm-install",
"input": "cookier-parser"
},
{
"comments": "Installs the debug package.",
"tool": "npm-install",
"input": "debug"
},
{
"comments": "Installs the express package.",
"tool": "npm-install",
"input": "express"
},
{
"comments": "Installs the morgan package.",
"tool": "npm-install",
"input": "morgan"
},
{
"comments": "Installs the pug package.",
"tool": "npm-install",
"input": "pug"
}
]
}