forked from microsoft/PyRIT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
100 lines (100 loc) · 3.11 KB
/
Copy pathdevcontainer.json
File metadata and controls
100 lines (100 loc) · 3.11 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "PyRIT | Python Dev Container",
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
"remoteUser": "vscode",
"workspaceFolder": "/workspace",
"containerEnv": {
"PYTHONPATH": "/workspace"
},
"containerUser": "vscode",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"python.defaultInterpreterPath": "/opt/venv/bin/python",
"python.analysis.extraPaths": [
"/workspace"
],
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "openFilesOnly",
"python.analysis.autoSearchPaths": false,
"python.analysis.indexing": true,
"python.analysis.userFileIndexingLimit": 2000,
"python.analysis.persistAllIndices": false,
"python.analysis.cacheFolderPath": "/home/vscode/.cache/pylance",
"python.analysis.nodeArguments": ["--max-old-space-size=8192"],
"python.analysis.usePullDiagnostics": true,
"python.linting.enabled": true,
"python.analysis.include": [
"pyrit/**"
],
"python.analysis.exclude": [
"/opt/venv/**",
"**/.venv/**",
"**/site-packages/**",
"**/doc/**",
"**/tests/**",
"**/build/**",
"**/dist/**",
"**/__pycache__/**",
"**/node_modules/**"
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/__pycache__/**": true,
"**/.pytest_cache/**": true,
"**/build/**": true,
"**/dist/**": true,
"**/pyrit/auxiliary_attacks/gcg/attack/**": true,
"**/doc/**": true,
"**/.ty_cache/**": true,
"**/frontend/node_modules/**": true,
"**/frontend/dist/**": true,
"**/dbdata/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/build": true,
"**/dist": true,
"**/.git": true
},
"files.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/__pycache__": true
},
"explorer.autoReveal": true,
"files.maxMemoryForLargeFilesMB": 4096,
"files.useExperimentalFileWatcher": true,
"git.showUntrackedFiles": true
},
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter",
"ms-azuretools.vscode-docker",
"tamasfe.even-better-toml",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-playwright.playwright",
"orta.vscode-jest",
"github.copilot",
"github.copilot-chat"
]
}
},
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/copilot-cli:1": {
"version": "latest"
}
},
"postCreateCommand": "/bin/bash -i .devcontainer/devcontainer_setup.sh",
"forwardPorts": [3000, 4213, 5000, 8000, 8888]
}