如何使用 Visual Studio Code 使用 https://github.com/ballerina-platform/ballerina-spec/blob/master/configurable/spec.md#locing-toml-files 中指定的多个 .toml 文件? (假设我想使用
Config.toml
和B.toml
)
在.vscode/launch.json
中我添加了:
{
"version": "0.2.0",
"configurations": [
{
"name": "Ballerina Run",
"type": "ballerina",
"request": "launch",
"programArgs": [],
"commandOptions": [],
"env": {
"BAL_CONFIG_FILES": "./Config.toml:./B.toml"
}
}
]
}
我无法通过
B.toml
提供可配置变量,只能选择通过 Config.toml
添加的变量。BAL_CONFIG_FILES="./Config.toml:./B.toml" bal run
。.vscode/launch.json
并按Run
按钮运行程序是行不通的。
在 VS Code 中,内部
Run
按钮只会打开一个新终端并运行 bal run
命令。您在.vscode/launch.json
中添加的配置在那里没有使用。