cli
cli copied to clipboard
Supabase CLI. Manage postgres migrations, run Supabase locally, deploy edge functions. Postgres backups. Generating types from your database schema.
At the moment you have to manually setup database webhooks. You also need to redo the setup when you reset the DB. This becomes a problem when collaborating with others...
# Bug report - [X] I confirm this is a bug with Supabase, not with my own application. - [X] I confirm I have searched the [Docs](https://docs.supabase.com), GitHub [Discussions](https://github.com/supabase/supabase/discussions), and...
It is no longer possible to set a plan when launching a project, as subscription plans are set on the organization level. This flag has been ignored for a while...
**Is your feature request related to a problem? Please describe.** I often want to know what my table schema looks like. To do this, I need to open the Dashboard...
**Describe the bug** We are using ``` npx supabase gen types typescript --local ``` to generate the TypeScript types in our pipeline. Since upgrading from 1.131.5 to 1.148.6, generating types...
**Describe the bug** Unable to successfully run `supabase start` within a devcontainer when not using `network_mode: "host"` **To Reproduce** If I use the below compose.yml file from within the `.devcontainer`...
**Link** The Docs: https://supabase.com/docs/guides/cli/config#auth.email.enable_signup The Code: https://github.com/supabase/cli/blob/develop/internal/start/start.go#L403 **Describe the problem** > Is the documentation missing? Or is it confusing? Why is it confusing? The documentation is very confusing. It says,...
**Describe the bug** I get the below error whenever I run `supabase db diff`. Even removing all images and containers doesn't fix it. Other commands work fine, such as `start`,...
**Describe the bug** The supabase migration squash command is supposed to flatten all the migration scripts to one file. It seems to delete one of my storage policies. **To Reproduce**...
**Describe the bug** Currently generated JSON typescript type is as follows: ```typescript export type Json = | string | number | boolean | null | { [key: string]: Json |...