From 253ece9de908f66114ba3058eac09ce40c24088d Mon Sep 17 00:00:00 2001 From: Simon Walker Date: Mon, 18 Sep 2023 09:42:47 +0100 Subject: [PATCH] Make getting started sections consistent community vs pro --- content/en/getting-started/api-key.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/en/getting-started/api-key.md b/content/en/getting-started/api-key.md index a8cdd83c55..07cb54ac4b 100644 --- a/content/en/getting-started/api-key.md +++ b/content/en/getting-started/api-key.md @@ -30,13 +30,15 @@ LocalStack expects your API key to be present in the environment variable `LOCAL {{< tabpane >}} {{< tab header="macOS/Linux" lang="shell" >}} export LOCALSTACK_API_KEY= -localstack start -d +localstack start {{< /tab >}} {{< tab header="Windows" lang="powershell" >}} $env:LOCALSTACK_API_KEY=""; localstack start -d {{< /tab >}} {{< /tabpane >}} +You can optionally run your LocalStack container in background mode by adding the `-d` flag to the `localstack start` command. + The `localstack` CLI will detect the API key and properly pass it to the LocalStack container. {{< alert title="Note" >}}