-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
34 lines (34 loc) · 942 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
30
31
32
33
34
{
"name": "Movie Recommender System",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "3.8",
"INSTALL_NODE": "true",
"NODE_VERSION": "lts/*"
}
},
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.autopep8Path": "/usr/local/bin/autopep8",
"python.formatting.blackPath": "/usr/local/bin/black",
"python.formatting.yapfPath": "/usr/local/bin/yapf",
"python.linting.banditPath": "/usr/local/bin/bandit",
"python.testing.pytestPath": "/usr/local/bin/pytest"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"eamodio.gitlens"
],
"features": {
"python": "latest",
"node": "lts/*"
},
"forwardPorts": [8888],
"postCreateCommand": "pip install -r requirements.txt",
"remoteUser": "vscode"
}