-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdevcontainer.json
More file actions
53 lines (53 loc) · 1.7 KB
/
devcontainer.json
File metadata and controls
53 lines (53 loc) · 1.7 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
{
"initializeCommand": "docker build -f .devcontainer/base/Dockerfile -t amp-devcontainer-base:local .",
"build": {
"dockerfile": "Dockerfile",
"context": "../..",
"args": {
"BASE_IMAGE": "amp-devcontainer-base:local"
}
},
"forwardPorts": [
6080
],
"remoteEnv": {
"CONTAINER_FLAVOR": "cpp",
"NODE_EXTRA_CA_CERTS": "/etc/ssl/certs/ca-certificates.crt"
},
"features": {
"ghcr.io/devcontainers/features/desktop-lite:1.2.8": {},
"ghcr.io/devcontainers/features/github-cli:1.1.0": {},
"ghcr.io/devcontainers/features/node:1.7.1": {}
},
"postCreateCommand": "npm install && npx playwright install --with-deps",
"customizations": {
"vscode": {
"settings": {
"cucumberautocomplete.steps": [
"test/cpp/features/steps/*.steps.ts"
],
"cucumberautocomplete.strictGherkinCompletion": false,
"cucumberautocomplete.strictGherkinValidation": false,
"cucumberautocomplete.smartSnippets": true,
"cucumberautocomplete.onTypeFormat": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
},
"extensions": [
"alexkrechik.cucumberautocomplete@3.1.0",
"github.copilot@1.388.0",
"github.vscode-github-actions@0.31.3",
"github.vscode-pull-request-github@0.134.0",
"jetmartin.bats@0.1.10",
"kherring.bats-test-runner@0.1.3",
"mhutchie.git-graph@1.30.0",
"ms-azuretools.vscode-docker@2.0.0",
"ms-playwright.playwright@1.1.17",
"ms-vscode.cmake-tools@1.22.28",
"ms-vscode.cpptools@1.31.4",
"sonarsource.sonarlint-vscode@5.0.0",
"usernamehw.errorlens@3.28.0"
]
}
}
}