sp-dev-fx-webparts/samples/react-openai-summarise-page.../azure-functions/.devcontainer/devcontainer.json

30 lines
853 B
JSON

{
"name": "Azure Functions & PowerShell",
"build": {
"dockerfile": "Dockerfile"
},
"forwardPorts": [ 7071 ],
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.defaultProfile.linux": "pwsh"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-azuretools.vscode-azurefunctions",
"ms-vscode.powershell"
]
}
},
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "dotnet restore",
// Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}