Issue #30 - security mode Issue #26 - upodate entity on config change Issue #21 - check box to select feature Issue #16 - Suggest/select entity in a list on the configuration screens Issue #5 - Thermostat over climate type
39 lines
971 B
JSON
39 lines
971 B
JSON
{
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
// Example of attaching to local debug server
|
|
"name": "Python: Attach Local",
|
|
"type": "python",
|
|
"request": "attach",
|
|
"port": 5678,
|
|
"host": "localhost",
|
|
"justMyCode": false,
|
|
"pathMappings": [
|
|
// {
|
|
// "localRoot": "${workspaceFolder}",
|
|
// "remoteRoot": "."
|
|
//},
|
|
{
|
|
"localRoot": "${workspaceFolder}/../core",
|
|
"remoteRoot": "/home/vscode/core"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
// Example of attaching to my production server
|
|
"name": "Python: Attach Remote",
|
|
"type": "python",
|
|
"request": "attach",
|
|
"port": 5678,
|
|
"host": "homeassistant.local",
|
|
"pathMappings": [
|
|
{
|
|
"localRoot": "${workspaceFolder}",
|
|
"remoteRoot": "/usr/src/homeassistant"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |