pio/.devcontainer/devcontainer.json
江舟水洲 eb85c1046a
Some checks failed
Embedded CI / build-and-test (push) Failing after 1m38s
初始化模板项目
2025-03-27 16:53:15 +08:00

20 lines
502 B
JSON

{
"name": "Embedded DevContainer",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"remoteUser": "vscode",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools" // C/C++ 调试支持
],
"settings": {
"platformio-ide.useBuiltinPython": false, // 使用容器内 Python
"platformio-ide.customPATH": "/usr/local/bin"
}
}
},
"postCreateCommand": "platformio upgrade --dev && pio init && echo '环境初始化完成'" // 初始化 PlatformIO
}