- For local testing, we can setup localstack
pip install "localstack[full]"
localstack startThis is a sample app that produces and consumes messages from AWS SQS
- Run the CLI:
go run main.go - go run main.go
Postman collection is available in docs/postman_collection.json
docker build -t crud-webapp -f Dockerfile .
docker run -d -p 9090:9090 crud-webappIn docker mode, it requires docker verion 18.03 and above.(Note: In Dockerfile we are using host.docker.internal to connect from the container to the localstack running on the host)