From 7b99d01a5cf6d93faadf39661758b57dc8f69cc7 Mon Sep 17 00:00:00 2001 From: sushi-chaaaan Date: Mon, 24 Jun 2024 02:54:15 +0900 Subject: [PATCH] remove dev container --- .devcontainer/devcontainer.json | 50 --------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index f4510c7..0000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,50 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the -// README at: https://github.com/devcontainers/templates/tree/main/src/python -{ - "name": "Python 3 Container with Poetry", - // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/python:1-3.10-bullseye", - "features": { - "ghcr.io/devcontainers-contrib/features/poetry:2": {} - }, - - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, - - // 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": "poetry config virtualenvs.in-project true && poetry install --no-root && poetry run pre-commit install", - - // Configure tool-specific properties. - "customizations": { - "vscode": { - "extensions": [ - "ms-python.python", - "ms-python.vscode-pylance", - "ms-toolsai.jupyter", - "ms-python.black-formatter", - "ms-python.mypy-type-checker", - "charliermarsh.ruff", - "ms-toolsai.vscode-jupyter-powertoys", - "mosapride.zenkaku", - "shardulm94.trailing-spaces", - "christian-kohler.path-intellisense", - "VisualStudioExptTeam.vscodeintellicode", - "VisualStudioExptTeam.intellicode-api-usage-examples", - "oderwat.indent-rainbow", - "tamasfe.even-better-toml", - "ms-azuretools.vscode-docker" - ], - "settings": { - "python.defaultInterpreterPath": "./.venv/bin/python", - "python.terminal.activateEnvInCurrentTerminal": true, - "python.terminal.activateEnvironment": true - } - } - } - - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. - // "remoteUser": "root" -}