diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8c45c8449..c17a8260b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -35,16 +35,22 @@ }, // Add the IDs of extensions you want installed when the container is created. "extensions": [ + "dbaeumer.vscode-eslint", + "matangover.mypy", + "ms-python.black-formatter", + "ms-python.isort", "ms-python.python", - "ms-python.vscode-pylance" + "ms-python.vscode-pylance", + "Vue.volar" ], // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [ 3000, 9000 ], + // Use 'onCreateCommand' to run commands at the end of container creation. // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "sudo chown -R vscode:vscode /workspaces/mealie/frontend/node_modules && make setup", + "onCreateCommand": "sudo chown -R vscode:vscode /workspaces/mealie/frontend/node_modules && make setup", // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "vscode", // "features": {