Alex Mitchell
Alex Mitchell
I personally do it in a separate command that runs after deploying and is not tied into the serverless lifecycle. I just use the AWS CLI to do an invalidation....
In #8563 I was specifically only including the unreserved characters with the idea that the whitelist could be expanded if needed. Of the reserved characters in the RFC, only `!'()*`...
I may have linked to the wrong place in the serverless docs. This is the link for the dashboard setup: https://www.serverless.com/framework/docs/guides/dashboard This template circumvents initializing a serverless app, so you...
`npm i -g serverless` installs the cli (or yarn or pnpm). This template already has a serverless.yml file, so you shouldn't be initializing one. Are you trying to use the...
If you run commands from the directory for this template, you shouldn't be prompted to initialize anything else. Commands like `sls deploy`, `sls package`, `sls info`, etc should work without...
This is a good solution to the double-deploy problem. I'll consider it when I eventually update this template for later remix versions.
API gateway doesn't support streaming, and Architect doesn't provide a way to use Lambda through a medium that does support it, like Lambda Function URLs. If you want to use...
I experienced this issue using the [electron-forge typescript-webpack template](https://www.electronforge.io/templates/typescript-+-webpack-template) trying to use `@parcel/watcher` at runtime. The error message reported the correct package name, however, inspecting the build output showed webpack...