Han Qiao

Results 436 comments of Han Qiao

> This wouldn't be good for CI/CD as they would end up download this by default unless you use the exclude flag. We have improved cli to only download images...

Have you tried `Allow all access` from the network restrictions section on the dashboard? https://supabase.com/dashboard/project/_/settings/database I don't think CLI supports resetting the network restrictions once you've updated it.

I do see network restrictions still applied to your project ``` {"config":{"dbAllowedCidrs":["0.0.0.0/0"],"dbAllowedCidrsV6":["::/0"]},"status":"applied","entitlement":"allowed"} ``` Could you share a screenshot of your dashboard page? It should look exactly like the screenshot below...

Your screenshot might not be uploaded successfully. Are you able to connect via `psql `? If this problem persists, it's probably best to file a [support ticket](https://supabase.com/dashboard/support/new) because I can...

Hello, we added a default location for loading env file from, ie. `supabase/functions/.env` Is that sufficient for your use case?

We probably want to type this as generics here, ie. ``` export type Json = string | number | boolean | null | T | T[] ``` I will transfer...

I agree this is a non-intuitive query pattern of PostgREST. As a workaround, you can specify the foreign key to get back a single entity. For eg. ```typescript const {...

Thank you for clarifying. I'm transferring this issue to postgres-meta repo which the cli uses for typegen. @soedirgo might have a better idea of what fixes are needed here.

You can list all locally running supabase containers using a docker filter, for eg. ```bash $ docker ps -f 'name=supabase_db' --format '{{ .Names }}' supabase_db_cli ``` After that you can...

Could you try `SUPABASE_INTERNAL_IMAGE_REGISTRY=docker.io supabase start`? It might be a temporary issue with aws.