local-api-gateway icon indicating copy to clipboard operation
local-api-gateway copied to clipboard

Run API Gateway locally against your HTTP Lambda containers

Results 4 local-api-gateway issues
Sort by recently updated
recently updated
newest added

Hi! Thank you for this great solution. I needed to support at least two backend replicas, and noticed that it's really easy to support inside local-api-gateway container. Would you be...

This PR adds support for concurrent execution of Bref. This addresses https://github.com/brefphp/local-api-gateway/issues/15, but uses a different approach that discussed in that ticket. This PR uses `docker exec` to run the...

I'm running local-api-gateway with this docker-compose.yml: ```yaml services: local-api-gw: image: bref/local-api-gateway ports: - '4006:8000' environment: TARGET: 'lambda-service:8080' lambda-service: build: context: . ``` If `local-api-gw` can't connect to `lambda-service` it responds...

So unlike kong that it supports multiple lambda funcations, but the problem is, it does not throw the same lambda event as your local api gateway does. So here is...