Prevent terminal relaunch on extension load

This commit is contained in:
emisargent 2023-03-10 23:41:47 +00:00
parent d16b2e4077
commit 392c5542f6
2 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
// For format details, see https://aka.ms/devcontainer.json // For format details, see https://aka.ms/devcontainer.json
{ {
"name": "pallets/flask", "name": "pallets/flask",
"image": "mcr.microsoft.com/devcontainers/python:3", "image": "mcr.microsoft.com/vscode/devcontainers/python:3",
// Configure tool-specific properties. // Configure tool-specific properties.
"customizations": { "customizations": {
@ -11,16 +11,16 @@
"settings": { "settings": {
// Settings for the python extension. // Settings for the python extension.
"python.defaultInterpreterPath": "${workspaceFolder}/.venv", "python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.terminal.activateEnvInCurrentTerminal": true "python.terminal.activateEnvInCurrentTerminal": true,
// Prevent the terminal from refreshing on extension load.
"terminal.integrated.environmentChangesRelaunch": false
} }
},
"codespaces": {
"openFiles": [
".devcontainer/codespaces-welcome-message.txt"
]
} }
}, },
// Displays a custom welcome message.
"onCreateCommand": "sudo cp .devcontainer/welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt",
// Runs the initial setup commands after the container is created. // Runs the initial setup commands after the container is created.
"postCreateCommand": "sudo chmod +x .devcontainer/post-create-command.sh && .devcontainer/post-create-command.sh" "postCreateCommand": "sudo chmod +x .devcontainer/post-create-command.sh && .devcontainer/post-create-command.sh"
} }