-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
70 lines (70 loc) · 2.19 KB
/
devcontainer-feature.json
File metadata and controls
70 lines (70 loc) · 2.19 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"id": "python",
"version": "0.1.0",
"name": "Python",
"description": "A package which installs Python.",
"options": {
"version": {
"type": "string",
"proposals": [
"latest",
"3.12",
"3.9.19"
],
"default": "latest",
"description": "The version of Python to install."
},
"downloadUrl": {
"type": "string",
"default": "",
"proposals": [
"https://mycompany.com/artifactory/python-generic-ftp-remote",
"https://mycompany.com/artifactory/python-generic-remote/ftp/python"
],
"description": "The download URL to use."
},
"pipIndex": {
"type": "string",
"default": "",
"proposals": [
"https://mycompany.com/artifactory/api/pypi/python/simple",
"https://mycompany.com/nexus/repository/pypi-group/pypi"
],
"description": "The pip index to use (used by search)."
},
"pipIndexUrl": {
"type": "string",
"default": "",
"proposals": [
"https://mycompany.com/artifactory/api/pypi/python/simple",
"https://mycompany.com/nexus/repository/pypi-group/simple"
],
"description": "The pip index URL to use (used by install)."
},
"pipTrustedHost": {
"type": "string",
"default": "",
"proposals": [
"mycompany.com",
"artifactory.mycompany.com",
"nexus.mycompany.com"
],
"description": "The pip trusted host to use."
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/python/current/bin/python"
}
}
},
"containerEnv": {
"PATH": "/usr/local/python/current/bin:${PATH}",
"PYTHON_PATH": "/usr/local/python/current"
}
}