A simple UI for SQS and S3 spinned locally
- Clone a repo via
git clone - Run
npm ci - Run
npm start
- Run
docker compose up -d - View logs
docker compose logs -f - Stop
docker compose down
Run localstack container if not already running
- Change environment varialbe
AWS_ENDPOINT=http://host.docker.internal:4566 - Run
docker compose -f local.yml up -d - View logs (optional)
docker compose -f local.yml logs -f
Use following commands to create resouces inside localstack using aws cli
Create S3 Bucket
aws s3api create-bucket --bucket sample-bucket --endpoint http://localhost:4566 --region us-east-1
Create SQS Queue
aws sqs create-queue --queue-name sample-queue --endpoint http://localhost:4566 --region us-east-1
Create SNS Topic
aws sns create-topic --name sample-topic --endpoint http://localhost:4566 --region us-east-1