Haydn Ewers

Results 26 comments of Haydn Ewers

I'm hitting this error trying to run the CLI in [a Vercel build step](https://vercel.com/docs/concepts/deployments/build-step). This is the "Install Command" I'm running: ``` amazon-linux-extras install -y docker && systemctl enable docker...

@soedirgo Thanks for the quick reply! > are you able to run Docker containers in a Vercel build step? Nope, Vercel runs the Docker containers. All that is configurable are...

Sorry, I probably should've included that in my first comment. Just running `docker info` yields the same error: ``` sh-4.2# docker info Client: Context: default Debug Mode: false Server: ERROR:...

It looks like Realtime is included nowadays, so I'm assuming it [just needs its port exposed](https://github.com/supabase/cli/blob/1d944280ae33d084d13cfa0b4d8e677328fd6f79/internal/start/start.go#L597-L598)?

Haha. Right, that makes sense. I got myself confused there.

Ah, interesting. I hadn't realised that. Do you think this is a reasonable approach? ``` js var store = new Store(); store.define("products", { "category": Store.hasOne(), "comments": Store.hasMany() }); store.push({ "type":...

This should also be available for hasOne() and hasMany().

@Emerson Thanks for that! The code you're looking at there comes from [RxJS](https://github.com/Reactive-Extensions/RxJS). You can think of it like promises: ``` js ajax(options) .then(() => store.add(data)) .then(() => store.find(type, id));...

Awesome, thanks for the @isair. I'll take a look.

Probably also related: - https://github.com/nodejs/undici/issues/1248 There are some suggestions in there that the issue might be DNS related. That could explain it's very inconsistent nature.