-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdevcontainer.json
More file actions
33 lines (33 loc) · 913 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
33 lines (33 loc) · 913 Bytes
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
{
"build": {
"dockerfile": "Dockerfile.github"
},
"customizations": {
"vscode": {
"settings": {
"localstack.cli.location": "/home/codespace/.python/current/bin/localstack"
},
"extensions": [
"amazonwebservices.aws-toolkit-vscode",
"localstack.localstack",
"hashicorp.terraform",
"ms-python.python"
]
},
"codespaces": {
"openFiles": [
"README.md"
]
}
},
"remoteEnv": {
"LOCALSTACK_APPINSPECTOR_ENABLE": "1",
"LOCALSTACK_APPINSPECTOR_DEV_ENABLE": "1",
"LOCALSTACK_APP_INSPECTOR": "1",
"LOCALSTACK_APPINSPECTOR": "1",
"LOCALSTACK_LAMBDA_DEBUG_MODE": "1",
"LOCALSTACK_LAMBDA_DEBUG_MODE_CONFIG_PATH": "/tmp/ls-debug/lambda_debug_mode.yaml",
"DOCKER_FLAGS": "-v /workspaces/localstack-workshop/.localstack:/tmp/ls-debug"
},
"postStartCommand": "bash ./00-setup/setup.sh"
}