daniel-dqsdatalabs / localstack_with_docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Localstack with docker

Initialize your project by running:

docker-compose  up

List all buckets

aws --endpoint-url=http://localhost:4566 s3 ls

Create bucket

aws --endpoint-url=http://localhost:4566 s3 mb s3://hmbucket

Creating the folder on S3: a folder called “lambda” will be created

aws --endpoint-url=http://localhost:4566 s3api put-object --bucket hmbucket --key lambda

Creating a queue in SQS

aws --endpoint-url=http://localhost:4566 sqs create-queue --queue-name lambda-tutorial

Reference:

https://www.serverless.com/plugins/serverless-localstack https://danieldcs.com/simulando-aws-local-com-localstack-e-node-js/ https://blog.geekhunter.com.br/aws-lambda-python-pycharm-localstack/ https://levelup.gitconnected.com/run-go-aws-lambda-locally-with-localstack-and-serverless-framework-5c80894f389c

About


Languages

Language:Python 61.2%Language:JavaScript 38.8%