From d44f97686d58e53a53458647ee4a710957537407 Mon Sep 17 00:00:00 2001 From: Ludovic Mermod Date: Wed, 9 Aug 2023 14:53:01 +0200 Subject: [PATCH] chore: remove unused devcontainer configuration --- strapi/.devcontainer/devcontainer.json | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100644 strapi/.devcontainer/devcontainer.json diff --git a/strapi/.devcontainer/devcontainer.json b/strapi/.devcontainer/devcontainer.json deleted file mode 100644 index 67be020..0000000 --- a/strapi/.devcontainer/devcontainer.json +++ /dev/null @@ -1,33 +0,0 @@ -// strapi service devcontainer -// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.238.0/containers/typescript-node -{ - "name": "clic-website-devcontainer/strapi", - // Use docker-compose stack, relative to current file - "dockerComposeFile": "../../.devcontainer/docker-compose.yaml", - // Connect VSCode to following service defined in dockerComposeFile - "service": "strapi", - // Working directory inside devcontainer, where project is located - "workspaceFolder": "/app", - // Configure tool-specific properties. - "customizations": { - // Configure properties specific to VS Code. - "vscode": { - // Add the IDs of extensions you want installed when the container is created. - "extensions": [ - // todo highlighter - "wayou.vscode-todo-highlight", - // linter - "dbaeumer.vscode-eslint", - // formatter - "esbenp.prettier-vscode" - ] - } - }, - // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "node" - // 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", -}