cBiscuitSurprise
cBiscuitSurprise
I started expanding the protocol to support [RESP3](https://github.com/antirez/RESP3/blob/master/spec.md) on this [branch](https://github.com/cBiscuit87/tedis/tree/feature/addResp3Support). - [x] Null - [x] Double - [x] Boolean - [x] Blob Error - [x] Verbatim String - [x]...
We've been limping along using [8c33ad6](https://github.com/cBiscuitSurprise/aws-lambda-builders.git@8c33ad607afeb7906369109751445a13d88ac9e0) custom-installed into our build environments. As much as I'd love to see @mgrandis and I's work merged into the product, my team has been...
@eladg Yep, we're slowly isolating our modules as needed into packages which we publish to our private npm package registry (we use [GitLab's package registry](https://docs.gitlab.com/ee/user/packages/npm_registry/) -- it can be free,...
CDK constructs can be used to add more providers: ```typescript // amplify/backend.ts import * as cognito from "aws-cdk-lib/aws-cognito"; ... const backend = defineBackend({ auth, data, ... }); backend.auth.resources.userPool.registerIdentityProvider( new cognito.UserPoolIdentityProviderSaml(...
Sorry got distracted with other stuff. This is blocking us again. Our backend infra is spread across many files (not just `backend.ts`). I can try to create a repo that...