This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
supabase-example/README.md
2023-12-01 16:24:37 +01:00

44 lines
426 B
Markdown

# Supabase configuration
Initialize Supabase
```bash
supabase init
```
Login to Supabase
```bash
supabase login
```
Link to your project
```bash
supabase link --project-ref YOUR-PROJECT-REF
```
Pull remote changes
```bash
supabase db pull
```
Create a new migration
```bash
supabase migration new YOUR-MIGRATION-NAME
```
Apply migrations
```bash
supabase db push
```
Reset database
```bash
supabase db reset
```