LmCast :: Stay tuned in

Local Stack Archived their GitHub repo and requires an account to run

Recorded: March 24, 2026, 2:23 a.m.

Original Summarized

GitHub - localstack/localstack: 💻 A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline · GitHub

Skip to content

Navigation Menu

Toggle navigation

Sign in

Appearance settings

PlatformAI CODE CREATIONGitHub CopilotWrite better code with AIGitHub SparkBuild and deploy intelligent appsGitHub ModelsManage and compare promptsMCP RegistryNewIntegrate external toolsDEVELOPER WORKFLOWSActionsAutomate any workflowCodespacesInstant dev environmentsIssuesPlan and track workCode ReviewManage code changesAPPLICATION SECURITYGitHub Advanced SecurityFind and fix vulnerabilitiesCode securitySecure your code as you buildSecret protectionStop leaks before they startEXPLOREWhy GitHubDocumentationBlogChangelogMarketplaceView all featuresSolutionsBY COMPANY SIZEEnterprisesSmall and medium teamsStartupsNonprofitsBY USE CASEApp ModernizationDevSecOpsDevOpsCI/CDView all use casesBY INDUSTRYHealthcareFinancial servicesManufacturingGovernmentView all industriesView all solutionsResourcesEXPLORE BY TOPICAISoftware DevelopmentDevOpsSecurityView all topicsEXPLORE BY TYPECustomer storiesEvents & webinarsEbooks & reportsBusiness insightsGitHub SkillsSUPPORT & SERVICESDocumentationCustomer supportCommunity forumTrust centerPartnersView all resourcesOpen SourceCOMMUNITYGitHub SponsorsFund open source developersPROGRAMSSecurity LabMaintainer CommunityAcceleratorGitHub StarsArchive ProgramREPOSITORIESTopicsTrendingCollectionsEnterpriseENTERPRISE SOLUTIONSEnterprise platformAI-powered developer platformAVAILABLE ADD-ONSGitHub Advanced SecurityEnterprise-grade security featuresCopilot for BusinessEnterprise-grade AI featuresPremium SupportEnterprise-grade 24/7 supportPricing

Search or jump to...

Search code, repositories, users, issues, pull requests...

Search

Clear

Search syntax tips

Provide feedback


We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Cancel

Submit feedback

Saved searches

Use saved searches to filter your results more quickly

Name

Query

To see all available qualifiers, see our documentation.

Cancel

Create saved search

Sign in

Sign up

Appearance settings

Resetting focus

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

This repository was archived by the owner on Mar 23, 2026. It is now read-only.

localstack

/

localstack

Public archive

Uh oh!

There was an error while loading. Please reload this page.


Notifications
You must be signed in to change notification settings

Fork
4.6k

Star
64.8k

Code

Issues
0

Pull requests
0

Actions

Projects

Security
0

Insights

Additional navigation options

Code

Issues

Pull requests

Actions

Projects

Security

Insights


localstack/localstack

 mainBranchesTagsGo to fileCodeOpen more actions menuFolders and filesNameNameLast commit messageLast commit dateLatest commit History7,855 Commits7,855 Commits.github.github  binbin  docsdocs  localstack-corelocalstack-core  scriptsscripts  teststests  .dockerignore.dockerignore  .git-blame-ignore-revs.git-blame-ignore-revs  .gitignore.gitignore  .pre-commit-config.yaml.pre-commit-config.yaml  .python-version.python-version  .test_durations.test_durations  AGENTS.mdAGENTS.md  CODEOWNERSCODEOWNERS  CODE_OF_CONDUCT.mdCODE_OF_CONDUCT.md  DOCKER.mdDOCKER.md  DockerfileDockerfile  Dockerfile.s3Dockerfile.s3  LICENSE.txtLICENSE.txt  MANIFEST.inMANIFEST.in  MakefileMakefile  README.mdREADME.md  docker-compose-pro.ymldocker-compose-pro.yml  docker-compose.ymldocker-compose.yml  plux.iniplux.ini  pyproject.tomlpyproject.toml  requirements-base-runtime.txtrequirements-base-runtime.txt  requirements-basic.txtrequirements-basic.txt  requirements-dev.txtrequirements-dev.txt  requirements-runtime.txtrequirements-runtime.txt  requirements-test.txtrequirements-test.txt  requirements-typehint.txtrequirements-typehint.txt  View all filesRepository files navigationREADMECode of conductContributingLicenseImportantProject Update: Consolidation into the Unified LocalStack Image
To provide a more reliable and streamlined experience, we are consolidating our development into a single, unified image. As part of this transition, this repository is now archived and read-only.
This decision reflects our commitment to reducing fragmentation and focusing our resources on building the most robust AWS emulation layer possible. We are deeply grateful to the contributors who helped make this project into what it is today–your work remains integral to the future of the LocalStack ecosystem.
What this means for your workflow:

LocalStack for AWS offers a range of options including a free Hobby plan for non-commercial use with the same capabilities as this project.
Your input is still vital to us. Please continue to share bug reports here and submit feature requests here or join our Slack Community.

Thank you for your continued support as we grow together.

LocalStack is a cloud software development framework to develop and test your AWS applications locally.

Overview •
Install •
Quickstart •
Run •
Usage •
Releases •
Contributing

📖 Docs •
💻 LocalStack for AWS •
☑️ LocalStack coverage

Overview
LocalStack is a cloud service emulator that runs in a single container on your laptop or in your CI environment. With LocalStack, you can run your AWS applications or Lambdas entirely on your local machine without connecting to a remote cloud provider! Whether you are testing complex CDK applications or Terraform configurations, or just beginning to learn about AWS services, LocalStack helps speed up and simplify your testing and development workflow.
LocalStack supports a growing number of AWS services, like AWS Lambda, S3, DynamoDB, Kinesis, SQS, SNS, and many more! The Pro version of LocalStack supports additional APIs and advanced features. You can find a comprehensive list of supported APIs on our ☑️ Feature Coverage page.
LocalStack also provides additional features to make your life as a cloud developer easier! Check out LocalStack's User Guides for more information.
Install
The quickest way to get started with LocalStack is by using the LocalStack CLI. It enables you to start and manage the LocalStack Docker container directly through your command line. Ensure that your machine has a functional docker environment installed before proceeding.
Brew (macOS or Linux with Homebrew)
Install the LocalStack CLI through our official LocalStack Brew Tap:
brew install localstack/tap/localstack-cli
Binary download (macOS, Linux, Windows)
If Brew is not installed on your machine, you can download the pre-built LocalStack CLI binary directly:

Visit localstack/localstack-cli and download the latest release for your platform.
Extract the downloaded archive to a directory included in your PATH variable:

For macOS/Linux, use the command: sudo tar xvzf ~/Downloads/localstack-cli-*-darwin-*-onefile.tar.gz -C /usr/local/bin

PyPI (macOS, Linux, Windows)
LocalStack is developed using Python. To install the LocalStack CLI using pip, run the following command:
python3 -m pip install localstack
The localstack-cli installation enables you to run the Docker image containing the LocalStack runtime. To interact with the local AWS services, you need to install the awslocal CLI separately. For installation guidelines, refer to the awslocal documentation.

Important: Do not use sudo or run as root user. LocalStack must be installed and started entirely under a local non-root user. If you have problems with permissions in macOS High Sierra, install with pip install --user localstack

Quickstart
Start LocalStack inside a Docker container by running:
% localstack start -d

__ _______ __ __
/ / ____ _________ _/ / ___// /_____ ______/ /__
/ / / __ \/ ___/ __ `/ /\__ \/ __/ __ `/ ___/ //_/
/ /___/ /_/ / /__/ /_/ / /___/ / /_/ /_/ / /__/ ,<
/_____/\____/\___/\__,_/_//____/\__/\__,_/\___/_/|_|

- LocalStack CLI: 4.9.0
- Profile: default
- App: https://app.localstack.cloud

[17:00:15] starting LocalStack in Docker mode 🐳 localstack.py:512
preparing environment bootstrap.py:1322
configuring container bootstrap.py:1330
starting container bootstrap.py:1340
[17:00:16] detaching bootstrap.py:1344
You can query the status of respective services on LocalStack by running:
% localstack status services
┏━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃ Service ┃ Status ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ acm │ ✔ available │
│ apigateway │ ✔ available │
│ cloudformation │ ✔ available │
│ cloudwatch │ ✔ available │
│ config │ ✔ available │
│ dynamodb │ ✔ available │
...
To use SQS, a fully managed distributed message queuing service, on LocalStack, run:
% awslocal sqs create-queue --queue-name sample-queue
{
"QueueUrl": "http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/sample-queue"
}
Learn more about LocalStack AWS services and using them with LocalStack's awslocal CLI.
Running
You can run LocalStack through the following options:

LocalStack CLI
Docker
Docker Compose
Helm

Usage
To start using LocalStack, check out our documentation.

LocalStack Configuration
LocalStack in CI
LocalStack Integrations
LocalStack Tools
Understanding LocalStack
Frequently Asked Questions

To use LocalStack with a graphical user interface, you can use the following UI clients:

LocalStack Web Application
LocalStack Desktop
LocalStack Docker Extension

Releases
Please refer to GitHub releases to see the complete list of changes for each release. For extended release notes, please refer to the changelog.
Contributing
If you are interested in contributing to LocalStack:

Start by reading our contributing guide.
Check out our development environment setup guide.
Navigate our codebase and open issues.

We are thankful for all the contributions and feedback we receive.
Get in touch
Get in touch with the LocalStack Team to
report 🐞 issues,
upvote 👍 feature requests,
🙋🏽 ask support questions,
or 🗣️ discuss local cloud development:

LocalStack Slack Community
LocalStack GitHub Issue tracker

Contributors
We are thankful to all the people who have contributed to this project.

Backers
We are also grateful to all our backers who have donated to the project. You can become a backer on Open Collective.

Sponsors
You can also support this project by becoming a sponsor on Open Collective. Your logo will show up here along with a link to your website.

License
Copyright (c) 2017-2026 LocalStack maintainers and contributors.
Copyright (c) 2016 Atlassian and others.
This version of LocalStack is released under the Apache License, Version 2.0 (see LICENSE). By downloading and using this software you agree to the End-User License Agreement (EULA).

About

💻 A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline

localstack.cloud

Topics

python

testing

aws

cloud

continuous-integration

developer-tools

localstack

Resources

Readme

License

View license

Code of conduct

Code of conduct

Contributing

Contributing

Uh oh!

There was an error while loading. Please reload this page.


Activity

Custom properties
Stars

64.8k
stars
Watchers

512
watching
Forks

4.6k
forks

Report repository

Releases
106

v4.14.0

Latest

Feb 26, 2026


+ 105 releases

Sponsor this project

Uh oh!

There was an error while loading. Please reload this page.



opencollective.com/localstack

Packages
0

 

 

 

Uh oh!

There was an error while loading. Please reload this page.


Contributors
620

+ 606 contributors

Languages

Python
99.2%

Makefile
0.2%

Shell
0.2%

ANTLR
0.1%

JavaScript
0.1%

Java
0.1%

Other
0.1%

Footer

Š 2026 GitHub, Inc.

Footer navigation

Terms

Privacy

Security

Status

Community

Docs

Contact

Manage cookies

Do not share my personal information

You can’t perform that action at this time.

LocalStack is a comprehensive cloud software development framework designed to facilitate the development and testing of applications within an AWS environment, entirely locally. The project, spearheaded by the LocalStack team, provides a fully functional local AWS cloud stack, enabling developers to create and test applications—including those leveraging Lambda, S3, DynamoDB, Kinesis, SQS, and SNS—without relying on external cloud providers. This framework is structured around a core Docker container, simplifying setup and execution.

The project’s core functionality centers around the LocalStack CLI, offering a streamlined interface for managing and running the LocalStack container, and the awslocal CLI for interacting with services like SQS. A key feature is the consolidation of development efforts into a unified image, driven by a commitment to reducing fragmentation and optimizing resource allocation within the LocalStack ecosystem. This transition emphasizes a focused approach to building the most robust AWS emulation layer.

For users, LocalStack provides a range of options including a free Hobby plan suitable for non-commercial use, mirroring the capabilities of the project. A crucial element of the framework is the substantial documentation available, encompassing detailed instructions for installation, quickstart procedures, usage guidelines, and release information. The framework supports multiple deployment methods, including LocalStack CLI, Docker, Docker Compose, and Helm, catering to diverse development preferences. Graphical user interfaces such as the LocalStack Web Application and Desktop applications further enhance usability.

The project’s success is underscored by a growing community and a robust contributor base. It actively encourages contributions through a comprehensive contributing guide, development environment setup instructions, and issue tracking. Support is readily accessible via the LocalStack Slack Community and GitHub issue tracker, allowing developers to report issues, request features, and obtain assistance. The framework benefits from backing and sponsorship through Open Collective, fostering ongoing development and maintenance. The project licenses its code under the Apache License, Version 2.0, promoting open access and collaboration. Ultimately, LocalStack streamlines the development and testing lifecycle for cloud applications, offering a cost-effective and isolated environment for innovation.