From 295c0427b690d1b4bad762885e13d425a2d03b3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Fri, 9 Sep 2022 16:48:08 +0000 Subject: [PATCH] devcontainer: zsh --- api/.devcontainer/devcontainer.json | 1 + ui/.devcontainer/devcontainer.json | 14 ++++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/api/.devcontainer/devcontainer.json b/api/.devcontainer/devcontainer.json index 81f0420..56cf31f 100644 --- a/api/.devcontainer/devcontainer.json +++ b/api/.devcontainer/devcontainer.json @@ -16,6 +16,7 @@ }, // Set *default* container specific settings.json values on container create. "settings": { + "terminal.integrated.defaultProfile.linux": "zsh", "python.defaultInterpreterPath": "/usr/local/bin/python", "python.linting.enabled": true, "python.linting.pylintEnabled": true, diff --git a/ui/.devcontainer/devcontainer.json b/ui/.devcontainer/devcontainer.json index 53596d1..b106f98 100644 --- a/ui/.devcontainer/devcontainer.json +++ b/ui/.devcontainer/devcontainer.json @@ -7,9 +7,14 @@ // Update 'VARIANT' to pick a Node version: 18, 16, 14. // Append -bullseye or -buster to pin to an OS version. // Use -bullseye variants on local arm64/Apple Silicon. - "args": { "VARIANT": "18-bullseye" } + "args": { + "VARIANT": "18-bullseye" + } + }, + // Set *default* container specific settings.json values on container create. + "settings": { + "terminal.integrated.defaultProfile.linux": "zsh" }, - // Configure tool-specific properties. "customizations": { // Configure properties specific to VS Code. @@ -21,13 +26,10 @@ ] } }, - // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], - // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "yarn install", - // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "node" -} +} \ No newline at end of file