Phi Van Ngoc

Results 15 comments of Phi Van Ngoc

I think the issue is with the import. Changing it to: `import TransportStream = require('winston-transport')` fixes the issue

@elorzafe We're building a video application and users are allowed to upload videos of maximum 1 minute. So I'd say around 100-150MB. I found a workaround using signed URL but...

Using `CONFIG_URL` works for me. Example Dockerfile: ``` FROM swaggerapi/swagger-ui:latest COPY swagger/*.json /usr/share/nginx/html/ ENV CONFIG_URL ./swagger-config.json CMD ["sh", "/usr/share/nginx/run.sh"] ``` And `swagger-config.json`: ``` { "urls": [ { "url": "./service1-swagger.json", "name":...

I got the same issue.

I got it. It was the issue with my test cases. `AWS.restore` needs to be called once the promise resolves, not before that of course.