Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/taufiqjack/learn_flutter_supabase

Learn Flutter Supabase Auth, CRUD Database, Chat app
https://github.com/taufiqjack/learn_flutter_supabase

chat-application flutter supabase

Last synced: 4 months ago
JSON representation

Learn Flutter Supabase Auth, CRUD Database, Chat app

Awesome Lists containing this project

README

        

# learn_flutter_supabase

- Create account Supabase : https://supabase.com/

### - Create Table Example :
```-- Create the table
create table products (
id bigint primary key generated always as identity,
name text not null
);

-- Insert some sample data into the table
insert into products (name)
values
('Bagpack'),
('Tracking Pole'),
('Dome Tent');

alter table products enable row level security;
```

### - Setup table to public :
```create policy "public can read products"
on public.products
for select to anon
using (true);
```