Local Runtime
Using tasks in Visual Studio Code
Overview: If you are developing in Visual Studio Code, the runtime components (like KUKSA Databroker or Vehicle Services) are available for local execution coming from our devenv-runtimes package and are accessible as Tasks, a feature of the Visual Studio Code. Additional information on tasks can be found here .
Start local runtime: To start local runtime, a task called Local Runtime - Up
is available. This task runs the runtime services in the correct order. You can run this task by clicking F1
and choose Tasks: Run task
, then select Local Runtime - Up
.
Stop local runtime: To stop local runtime, a task called Local Runtime - Down
is available. This task stops running runtime services gracefully. You can run this task by clicking F1
and choose Tasks: Run task
, then select Local Runtime - Down
.
Tasks Management: Visual Studio Code offers various other commands concerning tasks like Start/Terminate/Restart/… You can access them by pressing F1 and typing task
. A list with available task commands will appear.
Logging: Running tasks appear in the Terminals View of Visual Studio Code. From there, you can see the logs of each running task. More detailed logs can be found inside your workspace’s logs directory ./logs/*
Add/Change runtime service configuration
The configuration for services of our provided local runtime are defined in the
runtime.json
at the root of the repository
devenv-runtimes
.
For a more detailed view on how to change or add runtime service configuration, please visit:
Lifecycle Management Package Development
Using KUKSA Databroker CLI
A CLI tool is provided for interacting with a running instance of the KUKSA Databroker. It can be started by running the task Local Runtime - VehicleDataBroker CLI
(by pressing F1, type Run Task followed by Local Runtime - VehicleDataBroker CLI
). The Runtime Local needs to be running for you to be able to use the tool.
Integrating a new runtime service into Visual Studio Code Task
Integration of a new runtime service can be done by duplicating one of the existing tasks.
- Create a new service in either a new created Package or branch/fork of devenv-runtimes as already explained above
- In
.vscode/tasks.json
, duplicate section from task e.g.Local Runtime - Up
,Local Runtime - Run VehicleApp
orLocal Runtime - VehicleDataBroker CLI
- Correct names in a new code block
- Disclaimer:
Problem Matcher
defined intasks.json
is a feature of the Visual Studio Code Task, to ensure that the process runs in background - Run task using
[F1 -> Tasks: Run Task -> <Your new task label>]
- Task should be visible in Terminal section of Visual Studio Code
Task CodeBlock helper
{
"label": "<task_name>",
"detail": "<task_description>",
"type": "shell",
"command": [
"velocitas exec runtime-local <service_id> <args>"
],
"presentation": {
"close": true,
"reveal": "never"
},
"problemMatcher": []
}
Troubleshooting
Problem description: When integrating new services into an existing dev environment, it is highly recommended to use the Visual Studio Code Task Feature. A new service can be easily started by calling it from bash script, however restarting the same service might lead to port conflicts (GRPC Port or APP port). That can be easily avoided by using the Visual Studio Code Task Feature.
Codespaces
If you are using Codespaces, remember that you are working on a remote agent. That’s why it could happen that the tasks are already running in the background. If that’s the case a new start of the tasks will fail, since the ports are already in use. Another possibility to check if the processes are already running, is to check which ports are already open. Check the Ports-tab to view all open ports (if not already open, hit F1
and enter View: Toggle Ports
).
Next steps
- Tutorial: Quickstart
- Concept: Deployment Model
- Concept: Build and release process