Barnaby Keene

Results 182 comments of Barnaby Keene

I downloaded the release builds, the server machine is Debian 7.

Yeah pretty much that! Thanks!

One thing I'd love to see is a count of relations. ```go posts, err := d.db.Post. FindMany(filters...). With( db.Post.Author.Fetch(), db.Post.Tags.Fetch(), db.Post.Category.Fetch(), db.Post.Comments.Fetch().Count(), // Outputs a count of items in the...

This is really unfortunate to hear, thanks @steebchen for maintaining it and answering all my questions over the years! I literally just migrated my company's database ops to Prisma, and...

From what I've heard from Go developers I know, the reason this project wasn't picked up was because it was branded as "experimental" so you can't really expect real usage...

Do you plan to provide resources for community clients in future? I'd love to look into contributing and buiding generators but there seems to be a lack of documentation for...

Looks like SQLBoiler is the tool to go for. It plays nicely with Prisma's existing schema management. I was evaluating Ent and sqlc but both are tightly coupled to the...

Playing with Ent as an option, annoyingly it's a full solution (its own schema and migration tooling) so I started a simple converter script: https://github.com/Southclaws/prisment Feel free to try it...

I'm seeing this too, given the ephemerality of services that Traefik targets, it would make sense to remove not attempt to renew certificates that are not present on any services....

> Right now, the formatting is that it provides several lines, separated by `\n` which get shoved into the errorVerbose field. This. 10000% This.