Fixed a design flaw where we supposed we could find keys before reading part of the message by adding support for a method to grab the key at runtime
47 lines
923 B
JSON
47 lines
923 B
JSON
{
|
|
// Displayed name
|
|
"name": "Deno-Message-Utils",
|
|
|
|
// Image to be used
|
|
"build": {
|
|
"dockerfile": "DOCKERFILE"
|
|
},
|
|
|
|
// Customization
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"denoland.vscode-deno",
|
|
"fabiospampinato.vscode-highlight",
|
|
"fabiospampinato.vscode-todo-plus"
|
|
]
|
|
}
|
|
},
|
|
|
|
// Env in container
|
|
"containerEnv": {
|
|
|
|
},
|
|
|
|
// Mounts in container
|
|
"mounts": [
|
|
{
|
|
"source": "${localWorkspaceFolder}",
|
|
"target": "/workspace",
|
|
"type": "bind"
|
|
}
|
|
],
|
|
|
|
// The WorkspaceFolder inside container
|
|
"workspaceFolder": "/workspace",
|
|
|
|
// RunArgs
|
|
"runArgs": [
|
|
"--name",
|
|
"Typescript-MessageUtils",
|
|
"--env-file",
|
|
".environment/.env"
|
|
]
|
|
|
|
|
|
} |