Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add task for local runtime down #77

Merged
merged 3 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .velocitas.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
{
"name": "devenv-runtimes",
"version": "v2.2.5"
"version": "fix/local-runtime"
},
{
"name": "devenv-github-workflows",
Expand Down
42 changes: 27 additions & 15 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,19 @@
"reveal": "always",
"panel": "dedicated"
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "Local Runtime - Down",
"detail": "Stops the local runtime",
"type": "shell",
"command": "velocitas exec runtime-local down",
"group": "none",
"presentation": {
"panel": "dedicated",
"clear": true,
},
"problemMatcher": [ ]
},
{
"label": "Local Runtime - Run VehicleApp",
Expand All @@ -65,7 +77,7 @@
"close": true,
"reveal": "never"
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "Local Runtime - VehicleDataBroker CLI",
Expand All @@ -74,7 +86,7 @@
"command": "velocitas exec runtime-local run-vehicledatabroker-cli",
"group": "none",
"isBackground": false,
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "Pre Commit Action",
Expand All @@ -83,7 +95,7 @@
"command": "pre-commit run --show-diff-on-failure --color=always --all-files",
"group": "none",
"isBackground": false,
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "K3D Runtime - Up",
Expand All @@ -96,7 +108,7 @@
"clear": true,
"close": false
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "K3D Runtime - Down",
Expand All @@ -109,7 +121,7 @@
"clear": true,
"close": false
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "K3D Runtime - Build VehicleApp",
Expand All @@ -123,7 +135,7 @@
"clear": true,
"close": false
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "K3D Runtime - Deploy VehicleApp",
Expand All @@ -142,7 +154,7 @@
// not neccessary but is executed in parallel to Runtime - Up
"K3D Runtime - Build VehicleApp"
],
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "K3D Runtime - Deploy VehicleApp (without rebuild)",
Expand All @@ -159,7 +171,7 @@
"dependsOn": [
"K3D Runtime - Up"
],
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "Kanto Runtime - Up",
Expand Down Expand Up @@ -200,7 +212,7 @@
"clear": true,
"close": false
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "Kanto Runtime - Build VehicleApp",
Expand All @@ -214,7 +226,7 @@
"clear": true,
"close": false
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "Kanto Runtime - Deploy VehicleApp",
Expand All @@ -232,7 +244,7 @@
"Kanto Runtime - Up",
"Kanto Runtime - Build VehicleApp"
],
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "Kanto Runtime - Deploy VehicleApp (without rebuild)",
Expand All @@ -249,7 +261,7 @@
"dependsOn": [
"Kanto Runtime - Up"
],
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "(Re-)generate vehicle model",
Expand All @@ -263,7 +275,7 @@
"clear": true,
"close": false
},
"problemMatcher": []
"problemMatcher": [ ]
},
{
"label": "(Re-)generate gRPC SDKs",
Expand All @@ -277,7 +289,7 @@
"clear": true,
"close": false
},
"problemMatcher": []
"problemMatcher": [ ]
}
],
"inputs": [
Expand Down
Loading