Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/taufiqjack/learn_flutter_supabase
- Owner: taufiqjack
- Created: 2024-08-07T07:25:17.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-09-10T07:11:13.000Z (5 months ago)
- Last Synced: 2024-09-28T10:42:47.168Z (4 months ago)
- Topics: chat-application, flutter, supabase
- Language: Dart
- Homepage:
- Size: 805 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```