GENEL SAYAÇ

Bas — oyunu ekle

Her tıklama ortak veritabanına gider. Bakalım kaç kişiyiz?

Toplam tıklama
Veritabanına bağlanılıyor…
01 Büyük düğmeye bas
02 Sayaç herkes için güncellenecek
Veritabanı ayarı gerekiyor

Supabase'de button_clicks tablosunu oluştur ve anonim eklemelere izin ver:

create table button_clicks (id bigint generated by default as identity primary key, created_at timestamptz default now());
alter table button_clicks enable row level security;
create policy "public insert" on button_clicks for insert to anon with check (true);
create policy "public read" on button_clicks for select to anon using (true);