adding the ability to define environment variables.
currently, you could do it by adding a prefix in the command, like:
{
"command": "APP_ENV=development ./build.sh",
"name": "Build",
"request": "launch",
"type": "f5anything"
}
but, it will be nice if you could define it like this:
{
"command": "./build.sh",
"name": "Build",
"request": "launch",
"type": "f5anything",
"env": {
"APP_ENV": "development"
}
}
adding the ability to define environment variables.
currently, you could do it by adding a prefix in the command, like:
but, it will be nice if you could define it like this: