manage_dev_environment
Set up and manage local development environments using Docker Compose. Specify the service (e.g., 'postgres', 'redis') and project path to streamline configuration for efficient development workflows.
Instructions
Manages local development environments using Docker Compose.
Args:
service: The service to set up (e.g., 'postgres', 'redis').
project_path: The path to the project directory.
Returns:
A confirmation message with the next steps.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | No | . | |
service | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"default": ".",
"title": "Project Path",
"type": "string"
},
"service": {
"title": "Service",
"type": "string"
}
},
"required": [
"service"
],
"title": "manage_dev_environmentArguments",
"type": "object"
}