Merge pull request #86 from ccheetham/dev

add workspace support
This commit is contained in:
Chris Cheetham 2021-03-16 08:08:40 -04:00 коммит произвёл GitHub
Родитель 1947bebfd3 21150a2958
Коммит fe24a6ee79
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 38 добавлений и 0 удалений

10
.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,10 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
]
}

28
.vscode/tasks.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,28 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "bin/build",
"type": "process",
"args": [],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build Docker image",
"command": "docker",
"type": "process",
"args": [
"build",
"-t",
"initializr-izrs:latest",
"."
],
"problemMatcher": []
}
]
}