We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2181cdd commit 6332a48Copy full SHA for 6332a48
2 files changed
.devcontainer/devcontainer.json
@@ -20,5 +20,8 @@
20
]
21
}
22
},
23
+ "remoteEnv": {
24
+ "LAMBDA_DOCKER_FLAGS": "-p 19891:19891"
25
+ },
26
"postStartCommand": "bash ./00-setup/setup.sh"
27
Makefile
@@ -10,7 +10,9 @@ help: ## Show this help
10
# ── LocalStack ────────────────────────────────────────────────────────────────
11
12
start: ## Start LocalStack in the background
13
- LOCALSTACK_APPINSPECTOR_ENABLE=1 LOCALSTACK_APPINSPECTOR_DEV_ENABLE=1 localstack start -d
+ LOCALSTACK_APPINSPECTOR_ENABLE=1 LOCALSTACK_APPINSPECTOR_DEV_ENABLE=1 \
14
+ LAMBDA_DOCKER_FLAGS='-p 19891:19891' \
15
+ localstack start -d
16
17
debug-start: ## Start LocalStack with Lambda debug mode enabled (port 19891)
18
LOCALSTACK_APPINSPECTOR_ENABLE=1 LOCALSTACK_APPINSPECTOR_DEV_ENABLE=1 \
0 commit comments