-
Notifications
You must be signed in to change notification settings - Fork 1
/
.devcontainer.json
29 lines (25 loc) · 983 Bytes
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
"dockerFile": "django/dev.Dockerfile",
"context": "django",
"workspaceFolder": "/usr/src",
"shutdownAction": "stopContainer",
"runArgs": [
"-v", "/Users/shaungc/Documents/repos/appl-tracky/appl-tracky-api:/usr/src"
],
// do not specify these, and do not press links within vscode terminal when in dev container,
// otherwise vscode will assign a random port
// if you specify, you may keep track of the issue below:
// https://github.com/microsoft/vscode-remote-release/issues/1386
// "appPort": [],
// "forwardPorts": [],
"extensions": [
"ms-toolsai.jupyter", // required by python
"donjayamanne.python-extension-pack", // python required by pylance
"ms-python.vscode-pylance",
],
"settings": {
"terminal.integrated.shell.linux": "/bin/zsh",
"python.pythonPath": "/usr/local/bin/python"
}
}