Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7f1077f

Browse files
committedMay 7, 2023
Add a .devcontainer
1 parent 0dd5d98 commit 7f1077f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
 

‎.devcontainer/devcontainer.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "Python (Miniconda)",
3+
"image": "mcr.microsoft.com/devcontainers/miniconda:3",
4+
"settings": {
5+
"terminal.integrated.shell.linux": "/bin/bash"
6+
},
7+
"extensions": [
8+
"ms-python.python",
9+
"ms-python.vscode-pylance",
10+
"charliermarsh.ruff",
11+
"eamodio.gitlens",
12+
"GitHub.copilot",
13+
"ms-toolsai.jupyter",
14+
"ms-vscode-remote.vscode-remote-extensionpack",
15+
"oderwat.indent-rainbow",
16+
"GitHub.vscode-pull-request-github"
17+
],
18+
"forwardPorts": [
19+
5000
20+
],
21+
"postCreateCommand": "cd ${containerWorkspaceFolder} && pip install -e .[other,notebook,testing] && pip install ruff pre-commit && pre-commit install"
22+
}

0 commit comments

Comments
 (0)
Please sign in to comment.