From 93e0f61fcc27455be32f439bdcad6a9aaac1e09a Mon Sep 17 00:00:00 2001 From: saesols Date: Tue, 18 Jan 2022 19:31:05 +0300 Subject: [PATCH] Add vscode .devcontainer --- .devcontainer/devcontainer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..50dcf14e0 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +// For format details, see https://aka.ms/devcontainer.json +{ + "name": "Miniconda (Python 3)", + "build": { + "context": "..", + "dockerfile": "../docker/Dockerfile", + }, + + "settings": { + "python.defaultInterpreterPath": "/opt/conda/envs/myenv/bin/python", + }, + + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ], +}