You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add LocalStack for AWS license requirement to prerequisites
* Hyperlink LOCALSTACK_AUTH_TOKEN and clean up localstack CLI prerequisite
* trigger CI
* Add auth token guard to start target
Copy file name to clipboardExpand all lines: Makefile
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ run: ## Execute a SQL query through the Lambda function
62
62
63
63
start: ## Start LocalStack in detached mode
64
64
@echo "Starting LocalStack..."
65
+
@test -n "${LOCALSTACK_AUTH_TOKEN}"|| (echo "LOCALSTACK_AUTH_TOKEN is not set. Find your token at https://app.localstack.cloud/workspace/auth-token";exit 1)
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,8 @@ The following diagram shows the architecture that this sample application builds
26
26
27
27
## Prerequisites
28
28
29
-
-[`localstack` CLI](https://docs.localstack.cloud/getting-started/installation/#localstack-cli) with a [`LOCALSTACK_AUTH_TOKEN`](https://docs.localstack.cloud/getting-started/auth-token/).
29
+
- A valid [LocalStack for AWS license](https://localstack.cloud/pricing). Your license provides a [`LOCALSTACK_AUTH_TOKEN`](https://docs.localstack.cloud/getting-started/auth-token/) to activate LocalStack.
-[AWS CLI](https://docs.localstack.cloud/user-guide/integrations/aws-cli/) with the [`awslocal` wrapper](https://docs.localstack.cloud/user-guide/integrations/aws-cli/#localstack-aws-cli-awslocal).
31
32
-[CDK](https://docs.localstack.cloud/user-guide/integrations/aws-cdk/) with the [`cdklocal`](https://www.npmjs.com/package/aws-cdk-local) wrapper.
32
33
-[Node.js](https://nodejs.org/en/download/)
@@ -47,6 +48,7 @@ Then, navigate to the project directory:
47
48
```shell
48
49
cd sample-cdk-rds-database-initialization
49
50
```
51
+
50
52
Next, install the project dependencies by running the following command:
0 commit comments