├── .github └── workflows │ └── update-content.yml ├── CONTRIBUTING.md ├── LICENSE └── README.md /.github/workflows/update-content.yml: -------------------------------------------------------------------------------- 1 | name: Update README with New Content 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | schedule: 7 | # Runs at 00:00 UTC every Sunday 8 | - cron: '0 0 * * 0' 9 | 10 | jobs: 11 | update-readme: 12 | runs-on: ubuntu-latest 13 | 14 | steps: 15 | - name: Checkout Repository 16 | uses: actions/checkout@v2 17 | 18 | - name: Clone Second Repository 19 | run: git clone https://github.com/localstack/docs.git 20 | 21 | - name: Gather Tutorials and Videos 22 | run: | 23 | cd docs/content/en/tutorials/ 24 | 25 | tutorials_section="### Tutorials \n\n" 26 | 27 | for folder in */; do 28 | folder_name=${folder%/} 29 | title=$(grep '^title:' "$folder/index.md" | sed 's/title: //') 30 | tutorials_section+="- [$title](https://docs.localstack.cloud/tutorials/$folder_name)\n" 31 | done 32 | 33 | cd ../academy/ 34 | for folder in */; do 35 | academy_section+="#### $(grep '^title:' "$folder/_index.md" | sed 's/title: //')\n\n" 36 | if [ -d "$folder" ]; then 37 | for subfolder in "$folder"*/; do 38 | title=$(grep '^title:' "$subfolder/index.md" | sed 's/title: //') 39 | url=$(grep '^url:' "$subfolder/index.md" | sed 's/url: "\(.*\)"/\1/') 40 | academy_section+="- [$title](https://docs.localstack.cloud/$url)\n" 41 | done 42 | fi 43 | done 44 | 45 | cd ../../../../ 46 | 47 | sed -i '/## Content/,$d' README.md 48 | echo "## Content" >> README.md 49 | echo "" >> README.md 50 | echo "### Tutorials" >> README.md 51 | echo "### Videos" >> README.md 52 | 53 | awk -v tutorials="$tutorials_section" -v academy="$academy_section" ' 54 | /^## Content/ {print; next} 55 | /^### Tutorials/ { print tutorials; next} 56 | /^### Videos/ {print; print academy; next;} 57 | 1' README.md > temp.md && mv temp.md README.md 58 | 59 | - name: Clone Second Repository 60 | run: git clone https://github.com/localstack/localstack-blog.github.io.git 61 | 62 | - name: Gather Blog Posts 63 | run: | 64 | 65 | cd localstack-blog.github.io/content/ 66 | blog_section="### Blog Posts \n\n" 67 | 68 | for folder in */; do 69 | folder_name=${folder%/} 70 | title=$(grep '^title:' "$folder/index.md" | sed 's/title: //') 71 | blog_section+="- [$title](https://blog.localstack.cloud/$folder_name)\n" 72 | done 73 | 74 | cd ../.. 75 | 76 | echo "### Blog Posts" >> README.md 77 | 78 | awk -v blogs="$blog_section" ' 79 | /^### Blog Posts/ {print blogs; next;} 80 | 1' README.md > temp.md && mv temp.md README.md 81 | 82 | - name: Commit and Push Changes 83 | run: | 84 | git config --global user.name 'LocalStack Bot' 85 | git config --global user.email 'localstack-bot@users.noreply.github.com' 86 | git add README.md 87 | git diff --quiet && git diff --staged --quiet || (git add README.md && git commit -m "Update README with new tutorials, videos and blog posts" && git push) 88 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are welcome! 4 | 5 | Please ensure your pull request adheres to the following guidelines. 6 | 7 | ## Adding new links 8 | 9 | - Search for previous suggestions before submitting a new one to avoid duplicates. 10 | - Include one link per pull request. 11 | - Format the link as follows: `[name](http://example.com/) - A brief description ending with a period.` 12 | - Keep descriptions concise and adhere to alphabetical ordering when applicable. 13 | - Avoid explicitly mentioning `AWS` or `Amazon Web Services` in the description, as it is implied. 14 | - Ensure proper spelling and grammar. 15 | - Eliminate any trailing whitespace. 16 | - When submitting a pull request, provide a reason why the addition is considered noteworthy. 17 | - Title your pull request following this format: `Add user/repo - Brief repo description`. 18 | 19 | ## Updating existing links 20 | 21 | - Feel free to propose improvements to existing sections. 22 | - If you believe a listed link isn't noteworthy, submit an issue or pull request to start a discussion. 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | LocalStack - A fully functional local cloud stack 3 |

4 |

5 | 6 | Slack 7 | 8 | 9 | Twitter 10 | 11 | 12 | LinkedIn 13 | 14 | 15 | YouTube 16 | 17 | 18 | Discuss 19 | 20 |

21 | 22 | # Awesome LocalStack [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 23 | 24 | A curated list of [LocalStack](https://localstack.cloud) integrations, tools, frameworks, and platforms. 25 | 26 | If you want to contribute to this list, then please read the [contributing guidelines](CONTRIBUTING.md). Inspired by the [awesome](https://github.com/sindresorhus/awesome) list. 27 | 28 | ## User Interface 29 | 30 | - [Web Application](https://app.localstack.cloud/): Web application to interact with LocalStack services, manage resources, and use advanced features. 31 | - [Desktop Application](https://docs.localstack.cloud/user-guide/tools/localstack-desktop/): Desktop application to manage the container, view resources, and inspect logs. 32 | - [Docker Desktop Extension](https://hub.docker.com/extensions/localstack/localstack-docker-desktop): Docker Desktop extension to manage the container and view logs. 33 | - [Commandeer](https://getcommandeer.com/): Desktop application to manage LocalStack and test your applications locally with an IDE experience. 34 | - [SQS Admin](https://github.com/PacoVK/sqs-admin): Local Web Application to manage SQS queues. 35 | 36 | ## Integrations 37 | 38 | - [`arclocal`](https://docs.localstack.cloud/user-guide/integrations/architect/): Run Architect Infrastructure as Code framework with LocalStack. 39 | - [`awslocal`](https://docs.localstack.cloud/user-guide/integrations/aws-cli/#localstack-aws-cli-awslocal): Run the AWS Command Line Interface (CLI) with LocalStack. 40 | - [`cdklocal`](https://docs.localstack.cloud/user-guide/integrations/aws-cdk/): Run the AWS Cloud Development Kit Infrastructure as Code framework with LocalStack. 41 | - [`chalice-local`](https://docs.localstack.cloud/user-guide/integrations/chalice/): Run the AWS Chalice serverless micro-framework with LocalStack. 42 | - [`copilotlocal`](https://docs.localstack.cloud/user-guide/integrations/copilot/): Run the Copilot CLI to build AWS containerized applications with LocalStack. 43 | - [`pulumilocal`](https://docs.localstack.cloud/user-guide/integrations/pulumi/#pulumilocal): Run the Pulumi Infrastructure as Code framework with LocalStack. 44 | - [`samlocal`](https://docs.localstack.cloud/user-guide/integrations/aws-sam/): Run the Serverless Application Model Infrastructure as Code framework with LocalStack. 45 | - [`serverless-localstack`](https://docs.localstack.cloud/user-guide/integrations/serverless-framework/): Run the Serverless Infrastructure as Code framework with LocalStack. 46 | - [`tflocal`](https://docs.localstack.cloud/user-guide/integrations/terraform/#tflocal-wrapper-script): Run the Terraform/OpenTofu Infrastructure as Code framework with LocalStack. 47 | 48 | ## Frameworks 49 | 50 | - [Quarkus](https://docs.localstack.cloud/user-guide/integrations/quarkus/): Run LocalStack in your Quarkus application. 51 | - [Spring Cloud AWS](https://github.com/awspring/spring-cloud-aws): Run LocalStack in your Spring and Spring Boot applications. 52 | - [Testcontainers](https://testcontainers.com/modules/localstack/): Run LocalStack in your integration tests with Testcontainers. 53 | 54 | ## Continuous Integration (CI) Systems 55 | 56 | - [CircleCI](https://circleci.com/developer/orbs/orb/localstack/platform): Run LocalStack in your CircleCI workflows. 57 | - [GitHub Actions](https://github.com/localstack/setup-localstack/): Run LocalStack in your GitHub Actions workflows. 58 | 59 | ## Docker images 60 | 61 | - [`localstack/localstack`](https://hub.docker.com/r/localstack/localstack): LocalStack Community Edition Docker image. 62 | - [`localstack/localstack-pro`](https://hub.docker.com/r/localstack/localstack-pro): LocalStack Pro Docker image. 63 | - [`localstack/localstack:s3-latest`](https://hub.docker.com/r/localstack/localstack): LocalStack S3 Docker image. 64 | - [`localstack/localstack-pro:latest-bigdata`](https://hub.docker.com/r/localstack/localstack-pro): LocalStack Pro with Big Data dependencies pre-installed. 65 | 66 | ## Client libraries 67 | 68 | - [.NET Client](https://github.com/localstack-dotnet/localstack-dotnet-client): .NET client library for LocalStack. 69 | - [Go Client](https://github.com/elgohr/go-localstack): Go client library for LocalStack. 70 | - [Python Client](https://github.com/localstack/localstack-python-client): Python client library for LocalStack. 71 | 72 | ## Tools 73 | 74 | - [Cloudlens](https://github.com/one2nc/cloudlens): k9s like CLI for analyzing and managing local AWS resources in LocalStack. 75 | - [diapretty](https://github.com/silv-io/diapretty): LocalStack diagnosis pretty printer to create diagnostics reports via the diagnostics endpoint. 76 | - [Former2](https://former2.com/): Generate infrastructure as code templates from existing resources in your locally running LocalStack instance. 77 | - [Leapp](https://docs.leapp.cloud/latest/configuring-session/configure-localstack/): Create LocalStack sessions in Leapp to connect to the cloud emulator. 78 | - [VS Code Extension](https://github.com/localstack/localstack-vscode-extension): Visual Studio (VS) Code extension to deploy and manage Lambda functions on LocalStack. 79 | - [LocalSurf](https://docs.localstack.cloud/user-guide/tools/localsurf/): Browser plugin to redirect AWS service calls to LocalStack. 80 | 81 | ## Platforms 82 | 83 | - [Gitpod](https://github.com/whummer/localstack-gitpod-demo): Run LocalStack in Gitpod, a cloud-based IDE. 84 | - [Helm Charts](https://github.com/localstack/helm-charts): Helm charts to deploy LocalStack on Kubernetes. 85 | - [OpenShift](https://docs.localstack.cloud/user-guide/integrations/openshift/): Run LocalStack in OpenShift, a Kubernetes distribution. 86 | 87 | ## Extensions 88 | 89 | - [Authress](https://pypi.org/project/localstack-extension-authress/): LocalStack extension to run the Authress server locally. 90 | - [Diagnosis Viewer](https://pypi.org/project/localstack-extension-diagnosis-viewer/): LocalStack extension to view the diagnosis report. 91 | - [httpbin](https://pypi.org/project/localstack-extension-httpbin/): LocalStack extension to run the httpbin service. 92 | - [Mailhog](https://pypi.org/project/localstack-extension-mailhog/): LocalStack extension to run the Mailhog service. 93 | - [Miniflare](https://pypi.org/project/localstack-extension-miniflare/): LocalStack extension to run Miniflare, a serverless Cloudflare worker emulator. 94 | - [Stripe](https://pypi.org/project/localstack-extension-stripe/): LocalStack extension to run a stateful Stripe service mock. 95 | 96 | [//]: # (!! Do not place anything under content - this part is periodically recreated to update list from existing resources.) 97 | 98 | ## Content 99 | 100 | ### Tutorials 101 | 102 | - ["How To: Collaborative AWS local development with LocalStack’s Cloud Pods"](https://docs.localstack.cloud/tutorials/cloud-pods-collaborative-debugging) 103 | - ["Deploying containers on Elastic Container Service (ECS) clusters using Elastic Container Registry (ECR) and AWS Fargate, with LocalStack"](https://docs.localstack.cloud/tutorials/ecs-ecr-container-app) 104 | - ["Setting up Elastic Load Balancing (ELB) Application Load Balancers using LocalStack, deployed via the Serverless framework"](https://docs.localstack.cloud/tutorials/elb-load-balancing) 105 | - ["Creating ephemeral application previews with LocalStack and GitHub Actions"](https://docs.localstack.cloud/tutorials/ephemeral-application-previews) 106 | - ["End-to-End Testing in Gitlab CI with Testcontainers and LocalStack: Understanding Runners and Docker in Docker"](https://docs.localstack.cloud/tutorials/gitlab_ci_testcontainers) 107 | - ["Generate IAM Policies with LocalStack IAM Policy Stream"](https://docs.localstack.cloud/tutorials/iam-policy-stream) 108 | - ["Building a Java Notification app using AWS Java SDK, Simple Email Service (SES), and CloudFormation"](https://docs.localstack.cloud/tutorials/java-notification-app) 109 | - ["Deploying Lambda container image locally with Elastic Container Registry (ECR) using LocalStack"](https://docs.localstack.cloud/tutorials/lambda-ecr-container-images) 110 | - ["Replicating cloud resources locally with LocalStack's AWS Replicator extension"](https://docs.localstack.cloud/tutorials/replicate-aws-resources-localstack-extension) 111 | - ["Creating reproducible machine learning applications using Cloud Pods for persistent state snapshots"](https://docs.localstack.cloud/tutorials/reproducible-machine-learning-cloud-pods) 112 | - ["Chaos Engineering: Route53 Failover"](https://docs.localstack.cloud/tutorials/route-53-failover) 113 | - ["Host a static website locally using Simple Storage Service (S3) and Terraform with LocalStack"](https://docs.localstack.cloud/tutorials/s3-static-website-terraform) 114 | - ["Schema Evolution with Glue Schema Registry and Managed Streaming for Kafka (MSK) using LocalStack"](https://docs.localstack.cloud/tutorials/schema-evolution-glue-msk) 115 | - ["Chaos Engineering: Simulating Outages using Chaos API"](https://docs.localstack.cloud/tutorials/simulating-outages) 116 | - ["How To: Terraform Init Hooks for Automation & Production-Identical Test Environments"](https://docs.localstack.cloud/tutorials/using-terraform-with-testcontainers-and-localstack) 117 | 118 | ### Videos 119 | #### "LocalStack 101" 120 | 121 | - ["Course Overview"](https://docs.localstack.cloud/) 122 | - ["What is LocalStack"](https://docs.localstack.cloud//academy/localstack-101/what-is-localstack/) 123 | - ["Why LocalStack"](https://docs.localstack.cloud//academy/localstack-101/why-localstack/) 124 | - ["Getting started"](https://docs.localstack.cloud//academy/localstack-101/getting-started/) 125 | - ["Web App and Resource Browser"](https://docs.localstack.cloud//academy/localstack-101/web-app-resource-browser/) 126 | - ["Full Project Demo"](https://docs.localstack.cloud//academy/localstack-101/full-project-demo/) 127 | - ["Cloud Pods and Collaborative Work"](https://docs.localstack.cloud//academy/localstack-101/cloud-pods/) 128 | #### "Development & Deployment with LocalStack" 129 | 130 | - ["Course Overview"](https://docs.localstack.cloud/) 131 | - ["Deploy a full fledged containerised application using LocalStack"](https://docs.localstack.cloud//academy/localstack-deployment/deploy-app-ls/) 132 | - ["LocalStack Integrations - Infrastructure-as-Code and CI tools "](https://docs.localstack.cloud//academy/localstack-deployment/ls-integrations/) 133 | - ["Creating infrastructure with Terraform locally"](https://docs.localstack.cloud//academy/localstack-deployment/infra-terraform/) 134 | - ["Creating infra with CloudFormation locally"](https://docs.localstack.cloud//academy/localstack-deployment/infra-cloudformation/) 135 | - ["Security Testing with IAM Policy Stream"](https://docs.localstack.cloud//academy/localstack-deployment/iam-policy-stream/) 136 | - ["Setup GitHub Action workflow that starts up LocalStack and deploys the infrastructure"](https://docs.localstack.cloud//academy/localstack-deployment/github-action-ls) 137 | - ["Cloud pods - Team Collaboration"](https://docs.localstack.cloud//academy/localstack-deployment/cloud-pods) 138 | 139 | ### Blog Posts 140 | 141 | - ["LocalStack: 30k stars, 40M pulls - and just getting started! 🚀"](https://blog.localstack.cloud/2021-05-06-localstack-40k-stars) 142 | - ["Test Monitoring for LocalStack Apps"](https://blog.localstack.cloud/2021-09-16-test-monitoring-for-localstack-apps) 143 | - ["Introducing LocalStack Cockpit"](https://blog.localstack.cloud/2022-02-07-localstack-cockpit) 144 | - [Hot Swapping Python Lambda Functions using LocalStack](https://blog.localstack.cloud/2022-03-07-hot-swapping-python-lambda-functions-using-localstack) 145 | - [Develop and Test Real-time Data Pipelines with LocalStack](https://blog.localstack.cloud/2022-04-04-develop-and-test-data-analytics-pipelines-on-localstack) 146 | - [LocalStack — 40K stars, 90M pulls and an engaged community!](https://blog.localstack.cloud/2022-04-22-localstack-40k-stars-90m-pulls-and-an-engaged-community) 147 | - [Debug Lambda functions from your IDE using LocalStack](https://blog.localstack.cloud/2022-05-09-debug-your-lamda-functions-from-your-ide-using-localstack) 148 | - [Monitor your failing Lambdas with CloudWatch and LocalStack](https://blog.localstack.cloud/2022-05-25-cloudwatch-metric-alarms) 149 | - [Announcing LocalStack Discussion Pages](https://blog.localstack.cloud/2022-06-08-announcing-localstack-discussion-pages) 150 | - [Announcing LocalStack 1.0 General Availability!](https://blog.localstack.cloud/2022-07-13-announcing-localstack-v1-general-availability) 151 | - [LocalStack and AWS Parity Explained](https://blog.localstack.cloud/2022-08-04-parity-explained) 152 | - [Cloud Pods - Enabling state sharing and team collaboration for local cloud development](https://blog.localstack.cloud/2022-08-26-cloud-pods) 153 | - [Announcing LocalStack Extensions](https://blog.localstack.cloud/2022-09-12-announcing-localstack-extensions) 154 | - [LocalStack x Gitpod - Run cloud applications with LocalStack and Gitpod](https://blog.localstack.cloud/2022-09-26-localstack-x-gitpod-run-cloud-applications-with-localstack-and-gitpod) 155 | - [Contribute to Open Source With LocalStack & Hacktoberfest](https://blog.localstack.cloud/2022-10-01-contribute-to-open-source-with-localstack-hacktoberfest) 156 | - [Introducing LocalStack Docker Extension for Docker Desktop](https://blog.localstack.cloud/2023-01-13-introducing-localstack-extension-for-docker-desktop) 157 | - [Announcing LocalStack 2.0 General Availability!](https://blog.localstack.cloud/2023-03-29-announcing-localstack-2.0-general-availability) 158 | - [KnowBe4 redefines their local cloud development & testing using LocalStack](https://blog.localstack.cloud/2023-04-24-case-study-knowbe4) 159 | - [Develop your Cloudflare Workers + AWS apps locally with LocalStack & Miniflare](https://blog.localstack.cloud/2023-06-26-develop-your-cloudflare-workers-aws-apps-locally-with-localstack-miniflare) 160 | - [Xiatech accelerates their development workflows on cloud using LocalStack!](https://blog.localstack.cloud/2023-07-05-case-study-xiatech) 161 | - [LocalStack has joined AWS Marketplace to streamline local cloud development & testing!](https://blog.localstack.cloud/2023-09-07-localstack-has-joined-aws-marketplace-to-streamline-local-cloud-development-testing) 162 | - [OpenFABR leverages LocalStack for local Infrastructure as Code development and validation](https://blog.localstack.cloud/2023-09-25-case-study-openfabr) 163 | - [Introducing LocalStack Desktop Application for local cloud development & testing](https://blog.localstack.cloud/2023-11-09-introducing-localstack-desktop-application-for-local-cloud-development-testing) 164 | - [Join LocalStack at AWS re:Invent 2023](https://blog.localstack.cloud/2023-11-09-join-localstack-at-aws-reinvent-2023) 165 | - [Announcing LocalStack 3.0 General Availability!](https://blog.localstack.cloud/2023-11-16-announcing-localstack-30-general-availability) 166 | - [AWS re:Invent - Ten Things You Need to Know About LocalStack](https://blog.localstack.cloud/2023-11-27-ten-things-you-need-to-know-about-localstack) 167 | - ["One Click Local Development: Announcing Leapp's LocalStack Integration"](https://blog.localstack.cloud/2023-12-18-one-click-local-development-announcing-leapps-localstack-integration) 168 | - [Celebrating 50,000 GitHub Stars for LocalStack!](https://blog.localstack.cloud/2024-01-03-celebrating-50k-github-stars-localstack) 169 | - [Neurolytics enhances the efficiency and agility of its cloud-based development with LocalStack](https://blog.localstack.cloud/2024-01-25-localstack-neurolyticsai) 170 | - [Add Authentication & Authorization to LocalStack with the Authress extension](https://blog.localstack.cloud/2024-02-07-add-authentication-authorization-to-localstack-with-the-authress-extension) 171 | - [Mastering AWS Infrastructure Testing with LocalStack Cloud Pods - on localhost, CI and Testcontainers](https://blog.localstack.cloud/2024-02-20-cloud-pods-local-to-ci-and-testcontainers) 172 | - [How we are making connecting to LocalStack easier](https://blog.localstack.cloud/2024-03-04-making-connecting-to-localstack-easier) 173 | - [Renaming the Pro Tier](https://blog.localstack.cloud/2024-03-22-pro-starter-rename) 174 | - [CartonCloud utilizes LocalStack for transforming development efficiency and agility!](https://blog.localstack.cloud/2024-03-28-localstack-cartoncloud) 175 | - [Exploring S3 Mocking Tools — A Comparative Analysis of S3Mock, MinIO, and LocalStack](https://blog.localstack.cloud/2024-04-08-exploring-s3-mocking-tools-a-comparative-analysis-of-s3mock-minio-and-localstack) 176 | - [Ephemeral Environments with LocalStack & Shipyard](https://blog.localstack.cloud/2024-04-22-ephemeral-environments-with-localstack-shipyard) 177 | - [Building LocalStack with LocalStack](https://blog.localstack.cloud/2024-05-08-building-localstack-with-localstack) 178 | - ["Introducing LocalStack for Snowflake: The new emulator to build & test data pipelines locally"](https://blog.localstack.cloud/2024-05-22-introducing-localstack-for-snowflake) 179 | - [LocalStack Neptune development with G.V() — Gremlin IDE](https://blog.localstack.cloud/2024-06-05-localstack-neptune-development-with-gv-gremlin-ide) 180 | - [LocalStack Named to Redpoint InfraRed 100 List](https://blog.localstack.cloud/2024-06-18-redpoint-infrared-100) 181 | - [Developing cloud AI-powered apps with LocalStack and Ollama](https://blog.localstack.cloud/2024-07-04-develop-cloud-ai-with-ollama-localstack) 182 | - [Simulating outages for local cloud apps with LocalStack Chaos API](https://blog.localstack.cloud/2024-08-26-simulating-outages-for-local-cloud-apps-with-localstack-chaos-api) 183 | - [Take Your Local Testing to the Cloud with Ephemeral Instances](https://blog.localstack.cloud/2024-08-28-ephemeral-instances) 184 | - [Announcing the LocalStack 3.7 release!](https://blog.localstack.cloud/2024-08-29-localstack-release-v-3-7-0) 185 | - [Accelerate infrastructure testing with LocalStack Cloud Pods & GitHub Actions](https://blog.localstack.cloud/2024-09-19-accelerate-infrastructure-testing-with-localstack-cloud-pods-github-actions) 186 | - [](https://blog.localstack.cloud/tags) 187 | 188 | --------------------------------------------------------------------------------