Skip to content

Commit 783dbd0

Browse files
committed
fix: include .env file in dood devcontainer setup
1 parent ffd6674 commit 783dbd0

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Activate LocalStack Pro: https://docs.localstack.cloud/getting-started/auth-token/
2+
LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN:-} # required for Pro, not processed via template due to security reasons
3+
LOCALSTACK_API_KEY=${LOCALSTACK_API_KEY:-}
4+
# LocalStack configuration: https://docs.localstack.cloud/references/configuration/
5+
ACTIVATE_PRO=true
6+
DEBUG=true
7+
LS_LOG=trace
8+
PERSISTENCE=false
9+
AWS_ENDPOINT_URL=http://localhost.localstack.cloud:4566
10+
LOCALSTACK_HOST=localhost.localstack.cloud:4566
11+
AUTO_LOAD_POD=
12+
ENFORCE_IAM=false
13+
AWS_REGION=us-east-1
14+
AWS_DEFAULT_REGION=us-east-1
15+
IMAGE_NAME=localstack/localstack-pro:latest

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ package-lock.json
1111
/nosetests.xml
1212

1313
.env
14+
!.devcontainer/**/.env
1415
venv
1516
/.venv*
1617
/.coverage
@@ -58,4 +59,4 @@ volume/
5859

5960
# lambda packages
6061
lambdas/*/package/
61-
lambdas/*/lambda.zip
62+
lambdas/*/lambda.zip

0 commit comments

Comments
 (0)