Before installing act
and localstack
, ensure you have Docker installed and running on your machine:
- Using WinGet:
winget install nektos.act
- Using Scoop:
scoop install act
- Using Homebrew:
brew install act
To verify that act
has been installed correctly, run:
act --version
The quickest way get started with LocalStack is by using the LocalStack CLI. It allows you to start LocalStack from your command line.
-
Download binary: Go to the Localstack CLI Installation and download binary in Windows Installation.
-
**Install Localstack CLI **:
- Extract the
localstack-cli-3.5.0-windows-*.zip
file. - Run the setup file and follow the installation instructions.
- Extract the
- Using Homebrew:
brew install localstack/tap/localstack-cli
- For x86:
curl --output localstack-cli-3.5.0-linux-amd64-onefile.tar.gz \ --location https://github.com/localstack/localstack-cli/releases/download/v3.5.0/localstack-cli-3.5.0-linux-amd64-onefile.tar.gz
- ARM 64:
curl --output localstack-cli-3.5.0-linux-arm64-onefile.tar.gz \ --location https://github.com/localstack/localstack-cli/releases/download/v3.5.0/localstack-cli-3.5.0-linux-arm64-onefile.tar.gz
- Then Run:
sudo tar xvzf localstack-cli-3.5.0-linux-*-onefile.tar.gz -C /usr/local/bin
- If Using Homebrew:
brew install localstack/tap/localstack-cli
To verify that the LocalStack CLI
was installed correctly, you can check the version in your terminal:
localstack --version