@localstack/lstk_darwin_amd64 0.20.1 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +6 -5
  2. package/lstk +0 -0
  3. package/package.json +4 -5
package/README.md CHANGED
@@ -10,7 +10,7 @@ See [Installation](#installation) for other install methods.
10
10
 
11
11
  ## Prerequisites
12
12
 
13
- - A Docker-API-compatible container engine — [Docker](https://docs.docker.com/get-docker/), Rancher Desktop, Colima, OrbStack, Lima, and Podman are all auto-detected; see [container runtimes](docs/container-runtimes.md) for details.
13
+ - A Docker-API-compatible container engine — [Docker](https://docs.docker.com/get-docker/), Rancher Desktop, Colima, OrbStack, Lima, and Podman are all auto-detected; see [container runtimes](https://github.com/localstack/lstk/blob/main/docs/container-runtimes.md) for details.
14
14
  - [LocalStack account](https://app.localstack.cloud) — required for credentials, the CLI will guide you through authentication.
15
15
 
16
16
  ## Installation
@@ -43,18 +43,19 @@ Running `lstk` will automatically handle authentication, configuration, and cont
43
43
 
44
44
  - **Start / stop / status / logs** — manage the full LocalStack emulator lifecycle with a single command
45
45
  - **Interactive TUI** — a Bubble Tea-powered terminal UI in interactive terminals, plain output for CI/CD and scripting
46
- - **Browser-based login** — authenticate via browser and store credentials securely in the system keyring, or use `LOCALSTACK_AUTH_TOKEN` for CI
46
+ - **Browser-based login** — authenticate via browser and store credentials securely in the system keyring, or use `LOCALSTACK_AUTH_TOKEN` for CI (it takes precedence over stored credentials)
47
47
  - **Snapshots** — save, load, and manage emulator state as local files, cloud snapshots, or in your own S3 bucket
48
48
  - **Cloud CLI proxies** — run `aws`, `az`, `terraform`, `cdk`, and `sam` commands against LocalStack with the endpoint, credentials, and region pre-configured
49
- - **Extensions** — Git-style `lstk-<name>` executables extend the CLI with new commands; see [docs/extensions-authoring.md](docs/extensions-authoring.md)
49
+ - **Target an external emulator** — pass `--endpoint-url <url>` (or set `LSTK_ENDPOINT_URL`) to point most commands at an already-running LocalStack instance — docker compose, host-network mode, CI, a different machine, or a cloud-hosted ephemeral instance (`https://` is supported) — instead of one lstk manages locally
50
+ - **Extensions** — Git-style `lstk-<name>` executables extend the CLI with new commands; see [extension authoring](https://github.com/localstack/lstk/blob/main/docs/extensions-authoring.md)
50
51
  - **Self-update** — `lstk update` checks for and installs the latest release
51
- - **Structured JSON output** — pass `--json` to a supported command for a machine-readable envelope instead of formatted text; see [docs/structured-output.md](docs/structured-output.md)
52
+ - **Structured JSON output** — pass `--json` to a supported command for a machine-readable envelope instead of formatted text; see [structured output](https://github.com/localstack/lstk/blob/main/docs/structured-output.md)
52
53
 
53
54
  For the full command reference, configuration options, environment variables, and troubleshooting, see the **[lstk documentation](https://docs.localstack.cloud/aws/developer-tools/running-localstack/lstk/)**.
54
55
 
55
56
  ## Contributing
56
57
 
57
- See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, architecture, and pull request guidelines.
58
+ See [CONTRIBUTING.md](https://github.com/localstack/lstk/blob/main/CONTRIBUTING.md) for development setup, architecture, and pull request guidelines.
58
59
 
59
60
  ## Reporting bugs
60
61
 
package/lstk CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@localstack/lstk_darwin_amd64",
3
- "version": "0.20.1",
3
+ "version": "0.22.0",
4
4
  "bin": {
5
5
  "lstk_darwin_amd64": "lstk"
6
6
  },
@@ -15,11 +15,10 @@
15
15
  "LICENSE"
16
16
  ],
17
17
  "keywords": [
18
- "localstack",
19
18
  "cli",
20
- "aws",
21
- "emulator",
22
- "docker"
19
+ "developer-tools",
20
+ "local-development",
21
+ "localstack"
23
22
  ],
24
23
  "license": "Apache-2.0",
25
24
  "description": "LocalStack CLI v2 - Start and manage LocalStack emulators"