Add tasks for build identity services

This commit is contained in:
Timofey Boyko 2024-07-09 15:38:57 +03:00
parent dd435561a5
commit ae294f7e64
2 changed files with 60 additions and 0 deletions

45
.vscode/tasks.json vendored
View File

@ -62,6 +62,21 @@
"close": false
}
},
{
"label": "Backend | build SAAS + dnsmasq + identity",
"command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -s -d -i",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true,
"close": false
}
},
{
"label": "Backend | rebuild SAAS + dnsmasq",
"command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -s -d -f",
@ -92,6 +107,36 @@
"close": false
}
},
{
"label": "Backend | build EE + identity",
"command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -i",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true,
"close": false
}
},
{
"label": "Backend | build EE + dnsmasq + identity",
"command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -d -i",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true,
"close": false
}
},
{
"label": "Backend | clear",
"command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/clear.backend.docker.py",

View File

@ -67,6 +67,11 @@
"task": "Backend | build SAAS + dnsmasq",
"tooltip": "🛠️ Start the \"backend docker build SAAS + dnsmasq\" task",
},
{
"label": "Docker : Build-SAAS + dnsmasq + identity",
"task": "Backend | build SAAS + dnsmasq + identity",
"tooltip": "🛠️ Start the \"backend docker build SAAS + dnsmasq + identity\" task",
},
{
"label": "Docker : ReBuild-SAAS + dnsmasq",
"task": "Backend | rebuild SAAS + dnsmasq",
@ -77,6 +82,16 @@
"task": "Backend | build EE + dnsmasq",
"tooltip": "🛠️ Start the \"backend docker build EE + dnsmasq\" task",
},
{
"label": "Docker : Build-EE + identity",
"task": "Backend | build EE + identity",
"tooltip": "🛠️ Start the \"backend docker build EE + identity\" task",
},
{
"label": "Docker : Build-EE + dnsmasq + identity",
"task": "Backend | build EE + dnsmasq + identity",
"tooltip": "🛠️ Start the \"backend docker build EE + dnsmasq + identity\" task",
},
{
"label": "Docker : Clear",
"task": "Backend | clear",