Han Qiao
Han Qiao
Our frontend team is aware of this issue and is currently working on a fix. We will update here when a new version is ready. The last working version is...
@point-source Both the [CLI](https://github.com/supabase/cli/blob/main/internal/utils/misc.go#L36) and [self-hosted](https://github.com/supabase/supabase/blob/master/docker/docker-compose.yml#L12) are currently on version `0.22.08` of Studio. If you have upgraded the image yourself, you can downgrade by reverting any local changes to match...
If you don't want to hardcode the anon key, you can also let the CLI generate an env file dynamically ```bash supabase status -o env --override-name auth.anon_key=CUSTOM_ANON_KEY ``` `--override-name` is...
Webhooks is now available on latest studio build. You can enable to by updating [image version](https://github.com/supabase/supabase/blob/master/docker/docker-compose.yml#L12) to [20230203-d2d26d6](https://hub.docker.com/layers/supabase/studio/20230203-d2d26d6/images/sha256-7be359638f2d3fad503dc9a470c8302e1776e4c902752e2cba32b51c1282ec07?context=explore)
We have updated self-hosted realtime to v2 recently which should resolve a lot of these issues. Feel free to re-open if this is still reproducible.
Transferring because our storage team would be able to better assist on this one.
@G9000 that looks like a config error. `env(SUPABASE_AUTH_EXTERNAL_GOOGLE_CLIENT_ID)` is present in your config.toml but the env var is undefined. Did you forget to define the env var?
> secret = "SUPABASE_AUTH_EXTERNAL_GOOGLE_SECRET" That's just a static value and not using substitution. You want to keep `secret = "env(SUPABASE_AUTH_EXTERNAL_GOOGLE_SECRET)"` in config.toml and try the following ``` SUPABASE_AUTH_EXTERNAL_GOOGLE_SECRET=abc supabase start...
Thanks for the suggestion. I think we can have `supabase start` compare the list of running services vs enabled services in `config.toml`. It can then launch newly enabled containers incrementally.
Thanks for detailed steps to reproduce. I'm going to take a look at this today or tmr and get back to you.