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
Require LocalStack license and standardize documentation across all samples
- Add LOCALSTACK_AUTH_TOKEN check to all `start` Makefile targets
- Remove deprecated ACTIVATE_PRO=1 from all Makefiles
- Add `check` target for prerequisite validation to all Makefiles
- Create Makefiles for 11 samples that were missing them
- Rewrite all sample READMEs to match gold standard format with key/value tables
- Add license prerequisite as first bullet in all READMEs
- Create missing READMEs for cdk-for-terraform, emr-serverless-sample, lambda-function-urls-python, lambda-hot-reloading, lambda-xray
- Update root README Configuration section and add 11 missing table entries
- Fix broken lambda-function-urls link in root README
Copy file name to clipboardExpand all lines: README.md
+28-5Lines changed: 28 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# LocalStack Pro Samples
2
2
3
-
This repository contains sample projects that can be deployed on your local machine using [LocalStack Pro](https://localstack.cloud/).
3
+
This repository contains sample projects that can be deployed on your local machine using [LocalStack](https://localstack.cloud/).
4
4
5
5
Each example in the repository is prefixed with the name of the AWS service being used. For example, the `elb-load-balancing` directory contains examples that demonstrate how to use the Elastic Load Balancing service with LocalStack. Please refer to the sub directories for more details and instructions on how to start the samples.
6
6
@@ -14,14 +14,27 @@ Each example in the repository is prefixed with the name of the AWS service bein
14
14
15
15
## Configuration
16
16
17
-
Some of the samples require LocalStack Pro features. Please make sure to properly configure the `LOCALSTACK_AUTH_TOKEN` environment variable. You can find your Auth Token on the [LocalStack Web Application](https://app.localstack.cloud/workspace/auth-token) and you can refer to our [Auth Token documentation](https://docs.localstack.cloud/getting-started/auth-token/) for more details.
17
+
All samples require 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. Set it before running any sample:
18
+
19
+
```bash
20
+
export LOCALSTACK_AUTH_TOKEN=<your-auth-token>
21
+
```
22
+
23
+
Alternatively, use the LocalStack CLI to persist the token:
24
+
25
+
```bash
26
+
localstack auth set-token <your-auth-token>
27
+
```
28
+
29
+
You can find your Auth Token on the [LocalStack Web Application](https://app.localstack.cloud/workspace/auth-token).
A demo application illustrating how to proxy data from different resources (DynamoDB tables, RDS Aurora Postgres databases) via AppSync GraphQL using LocalStack. The sample runs mutation and query operations for two data sources and demonstrates real-time notifications via WebSocket subscriptions.
4
12
5
13
## Prerequisites
6
14
7
-
* LocalStack
8
-
* Docker
9
-
* Python 3.6+
10
-
*`make`
15
+
- 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.
Copy file name to clipboardExpand all lines: athena-s3-queries/README.md
+32-42Lines changed: 32 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,63 +1,53 @@
1
-
# LocalStack Demo: Athena Queries over S3 Files
1
+
# Athena Queries over S3 Files
2
2
3
-
Simple demo application illustrating how to run Athena queries over S3 files locally, using LocalStack.
3
+
| Key | Value |
4
+
| ------------ | ------------------------------ |
5
+
| Services | Athena, S3 |
6
+
| Integrations | AWS CLI |
7
+
| Categories | Analytics; Serverless |
8
+
9
+
## Introduction
10
+
11
+
A demo application illustrating how to run Athena queries over S3 files locally using LocalStack. The sample uploads CSV test data to S3, creates Athena table metadata, and runs SQL queries to aggregate results — all without connecting to AWS.
4
12
5
13
## Prerequisites
6
14
7
-
* LocalStack
8
-
* Docker
9
-
* Node.js / `npm`
10
-
*`make`
15
+
- 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.
0 commit comments