We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 693b068 commit 5fe390bCopy full SHA for 5fe390b
1 file changed
.devcontainer/devcontainer.json
@@ -0,0 +1,21 @@
1
+{
2
+ "name": "evaluatePython",
3
+ "image": "mcr.microsoft.com/devcontainers/python:1-3.12-bookworm",
4
+ "postCreateCommand": "pip install poetry==1.8.3 && poetry install",
5
+ "forwardPorts": [8080],
6
+ "customizations": {
7
+ "vscode": {
8
+ "extensions": [
9
+ "ms-python.python",
10
+ "ms-python.vscode-pylance",
11
+ "ms-python.flake8",
12
+ "GitHub.copilot",
13
+ "GitHub.copilot-chat"
14
+ ],
15
+ "settings": {
16
+ "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
17
+ "python.terminal.activateEnvironment": true
18
+ }
19
20
21
+}
0 commit comments