devcontainer_up
Initialize and start a devcontainer environment in a specified workspace folder to prepare for development tasks. Ensures the container is running and ready.
Instructions
Start or initialize a devcontainer environment in the specified workspace folder.Use this to ensure the devcontainer is running and ready for development tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputFilePath | No | ||
workspaceFolder | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputFilePath": {
"type": "string"
},
"workspaceFolder": {
"type": "string"
}
},
"required": [
"workspaceFolder"
],
"type": "object"
}