⚠️ 2 Steps Baaki Hain — Supabase Setup
Step 1 — Anon Key: Supabase Dashboard → Project Settings → API → "anon public" key copy karo (eyJ... se start hoga) → file mein sb_publishable_y2L2sJMu7jEsD9CIFMAVPg_MaiEdN7G replace karo
Step 2 — Google Auth: Supabase → Authentication → Providers → Google → Enable → Client ID & Secret Google Cloud Console se daalo
Step 3 — Redirect URL: Authentication → URL Configuration → Redirect URLs mein apna domain add karo (e.g. http://localhost:8080 ya hosting URL)
Step 4 — SQL (ek baar chalao):
create table if not exists workers (id uuid default gen_random_uuid() primary key, name text, phone text, skill text, address text, experience text, location text default 'Madhubani, Bihar', created_at timestamptz default now()); create table if not exists bookings (id uuid default gen_random_uuid() primary key, user_id uuid, user_email text, worker_id uuid, worker_name text, skill text, customer_name text, customer_phone text, customer_address text, note text, location text, status text default 'confirmed', created_at timestamptz default now()); alter table workers enable row level security; alter table bookings enable row level security; create policy if not exists "public_read_workers" on workers for select using (true); create policy if not exists "admin_insert_workers" on workers for insert with check (true); create policy if not exists "admin_delete_workers" on workers for delete using (true); create policy if not exists "insert_bookings" on bookings for insert with check (true); create policy if not exists "read_own_bookings" on bookings for select using (true);
📍 Madhubani, Bihar

घर बैठे बुलाइए
कारीगरतुरंत!

Verified local workers · Instant booking · Best rates in Madhubani

📍 Currently serving: Madhubani, Bihar
Verified Workers
Bookings Done
10+
Services Available
🔧 हमारी Services
Category चुनें — उस skill के workers देखें
👷 Available Workers
All verified professionals in Madhubani
 Workers load ho rahe hain...
📋 मेरी Bookings
Your service booking history
 Loading...
⚙️ Admin Panel ADMIN
Manage workers and view all bookings
Workers List
 Loading...