Peter Baumgartner
Peter Baumgartner
Following PEP518 seems like the right thing to do. I like not having it tied directly to Heroku or Buildpacks so it could possibly become a standard. `engines` is taken,...
Cloudfront does not require auth parameters, they are open for public access. It makes the security control more security theater than an actual security control, but in audits, sometimes that's...
I'm not sure if this feature fits in the project, but it could be supported by subclassing the model and adding your own method. What is the use case for...
If the code is straightforward and doesn't create a significant maintenance burden, sure a PR would be great!
Awesome, this looks great! My only nitpick is that something like `remove` or `delete` is more intuitive (opposite of `add`) to me than `clear`. `aws-vault` also provides a `rotate` command...
A couple issues with using pip's constraint support: 1. If you have a requirement with an extra, it fails, (at least in v22.2.2), you get: ``` ERROR: Constraints cannot have...
Here's a snippet from our template to lookup the `DbiResourceId` via a CustomResource: ```json "DBResourceId": { "Properties": { "DBInstanceIdentifier": { "Ref": "Instance" }, "ServiceToken": { "Fn::GetAtt": [ "DBResourceIdLookupLambda", "Arn" ]...
I see the same error when using `npx`, but it works when installed globally.
It's not pretty, but this is currently working for me with `pyproject.toml` and constraints: ```shell # generate requirements.txt pip-compile --generate-hashes --output-file requirements.txt --resolver backtracking --strip-extras pyproject.toml # generate requirements-dev.txt for...
Thanks @lyz-code! That was my experience when I picked it up as well. I have a PR that is also WIP here: https://github.com/lincolnloop/goodconf/pull/36 I'll review and see if we can...