mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-23 20:57:15 +00:00

* Add CoreDNS / DNS configuration * Support get version * add version * add coresys * Add more logic * move forwareder into dns * Setup docker inside * add docker to env * Add more function * more interface * Update hosts template * Add DNS folder * Fix issues * Add more logic * Add handling for hosts * Fix setting * fix lint * Fix some issues * Fix issue * Run with no cache * Fix issue on validate * Fix bug * Allow to jump into dev mode * Fix permission * Fix issue * Add dns search * Add watchdog * Fix set issues * add API description * Add API endpoint * Add CLI support * Fix logs + add hostname * Add/remove DNS entry * Fix attribute * Fix style * Better shutdown * Remove ha from network mapping * Add more options * Fix env shutdown * Add support for new repair function * Start coreDNS faster after restart * remove options * Fix ha fix
29 lines
676 B
JSON
29 lines
676 B
JSON
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
|
{
|
|
"name": "Hass.io dev",
|
|
"context": "..",
|
|
"dockerFile": "Dockerfile",
|
|
"appPort": "9123:8123",
|
|
"runArgs": [
|
|
"-e",
|
|
"GIT_EDITOR='code --wait'",
|
|
"--privileged"
|
|
],
|
|
"extensions": [
|
|
"ms-python.python"
|
|
],
|
|
"settings": {
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
"python.linting.pylintEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"python.formatting.provider": "black",
|
|
"python.formatting.blackArgs": [
|
|
"--target-version",
|
|
"py37"
|
|
],
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"files.trimTrailingWhitespace": true
|
|
}
|
|
} |