Matt G
Matt G
I'm happy to add a section on how to use Mangum together with AWS API Gateway and FastAPI deployed via AWS Lambda. Currently using the `ROOT_PATH` workaround but I think...
Hi. Firstly a thumbs up that I am finding the same issue here with FastAPI deployment on Lambda and then putting that behind the AWS API Gateway. All works fine...
An update. I tested that and it works well as a workaround 1. Created a simple proxy variable `settings.PROXY_PATH` which was populated with `"/custom"`. 2. Set the `app = FastAPI(root_path=settings.PROXY_PATH)`...
I see the merged PR #162 That looks good. Will that then resolve this issue? I've been through the source code and it looks as though it might but I...
I found a workaround that does enable the ROOT_PATH to be set dynamically for the STAGED endpoints at least. Custom domains require a little more work. Once the `scope` does...
@jordaneremieff we are getting beyond my pay grade here. My thinking was that at least on the FastAPI side, if we set the `root_path` correctly in the scope then that...
For anyone taking a look for this, pomegranate at this time does not work on Apple Silicon if installing via `conda install -c anaconda pomegranate` because there is no suitable...
Hi. Here is code to replicate the same sort of issue. In this case it works for Chrome but not Firefox. I am using Ubuntu 20.04 LTS. The code below...
Can this not be resolved in the docker-compose file by only starting the streamlit container after the FastAPI service is up and healthy? Already the project has the `depends_on:` in...
I also have the same issue. Using: * Ubuntu 20.04 * Docker 19.03.13 * docker-compose 1.27.4 Simple fix was to move the version up to 3.6 in the `docker-compose.yml` and...