dhis2_validate_environment
Validate and troubleshoot DHIS2 development environment setup by checking components like node_version, npm_yarn, dhis2_cli, browser_settings, network_connectivity, and cors_config for optimal configuration.
Instructions
Validate and troubleshoot DHIS2 development environment setup
Input Schema
Name | Required | Description | Default |
---|---|---|---|
checkAll | No | Run comprehensive environment validation | |
components | No | Specific components to validate | |
dhis2Instance | No | DHIS2 instance to test connectivity with | |
nodeVersion | No | Current Node.js version | |
operatingSystem | No | Operating system |
Input Schema (JSON Schema)
{
"properties": {
"checkAll": {
"description": "Run comprehensive environment validation",
"type": "boolean"
},
"components": {
"description": "Specific components to validate",
"items": {
"enum": [
"node_version",
"npm_yarn",
"dhis2_cli",
"browser_settings",
"network_connectivity",
"cors_config"
],
"type": "string"
},
"type": "array"
},
"dhis2Instance": {
"description": "DHIS2 instance to test connectivity with",
"type": "string"
},
"nodeVersion": {
"description": "Current Node.js version",
"type": "string"
},
"operatingSystem": {
"description": "Operating system",
"enum": [
"windows",
"macos",
"linux",
"unknown"
],
"type": "string"
}
},
"type": "object"
}