George Mihailov
George Mihailov
After playing with this for few days, it looks like `networkidle0` won't resolve because of simultaneous requests triggered by multiple lambdas.
@paya-cz thanks for your comment, the code below seems to work ```js const chromium = require('chrome-aws-lambda') let browserWSEndpoint module.exports.handler = async function (event) { let browser, page try { if...
So far I haven't seen any major performance improvements (connect vs launch). I think the actual page load is far more expensive than the new tab or browser launch. I'll...
Based on the @paya-cz comment, leaving one blank page will keep the browser instance alive. I can confirm that the subsequent run connects to the same instance. It takes about...
Somewhat relevant Dockerfile ``` FROM ... ENV MY_ENV RUN something $MY_ENV ``` I just recently realized that `MY_ENV=foo fargate service deploy app` doesn't pass the environment variable to the Docker...
https://aws.github.io/copilot-cli/docs/include/common-svc-fields/ ``` count: range: 1-10 cpu_percentage: 70 memory_percentage: 80 requests: 10000 response_time: 2s ```
I haven't tried it, but it looks like `copilot` has a decent support of storage -- https://aws.github.io/copilot-cli/docs/developing/storage/
https://aws.github.io/copilot-cli/docs/developing/service-discovery/
@icambron fixed