esphome-docs/.devcontainer/devcontainer.json
Jesse Hills b21af22549
Install pagefind in devcontainer (#3901)
Co-authored-by: H. Árkosi Róbert <robreg@zsurob.hu>
2024-06-05 11:58:20 +12:00

21 lines
555 B
JSON

// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/python-3
{
"name": "ESPHome - docs",
"image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.11",
"postCreateCommand": ".devcontainer/postCreate.sh",
"postAttachCommand": "make live-html",
"forwardPorts": [8000],
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"customizations": {
"vscode": {
"settings": {
"python.pythonPath": "/usr/local/bin/python"
},
"extensions": ["ms-python.python"]
}
}
}