Robert Brennan
Robert Brennan
+1 for something that allows us to pick up packr boxes in the `vendor` folder. We need to grab a text template defined in one of our dependencies.
+1 to this--nytimes uses `media:content medium=image`. I'm parsing a bunch of different major news sources, and none get images set. Would love to get some more best-effort in for getting...
Here's a workaround that seems to capture most images: ```go func getImageFromExtensions(item gofeed.Item) string { if media, ok := item.Extensions["media"]; ok { if content, ok := media["content"]; ok { for...
Happy to say this is now supported!
@nowheel I'm not really sure what the issue is here. Can you explain more? Did running `poetry --version` cause those `Installing` commands? Or is there a command missing?
Hey all--we just merged a possible fix. Try adding `SANDBOX_TYPE=exec` to your config.toml
Gonna close this as it seems like the original issue is fixed
Going to close this one--not entirely clear what the issue is, and hopefully `docker run` makes it easier
This isn't really fixed--the PR above (#1138) just changed the default setup so that it doesn't trigger the bug
I agree--let's close this PR. Packaging `install` and `run` into a single command is bad hygiene--there's a reason every README tells you to e.g. `npm install` and _then_ `npm run`--you...