Setup (free, 5 min):
1. supabase.com → New project
2. SQL Editor → run query below
3. Settings → API → copy URL + anon key
4. Paste here → Save — all team members do the same
📋 SQL setup query
DROP TABLE IF EXISTS winvestment_data;
CREATE TABLE winvestment_data (
id TEXT PRIMARY KEY DEFAULT 'main',
deals JSONB DEFAULT '[]',
monthly JSONB DEFAULT '{}',
channels JSONB DEFAULT '[]',
vendors JSONB DEFAULT '[]',
surveyors JSONB DEFAULT '[]',
platforms JSONB DEFAULT '[]',
buyers JSONB DEFAULT '[]',
title_contacts JSONB DEFAULT '[]',
updated_at TIMESTAMPTZ DEFAULT NOW()
);
ALTER TABLE winvestment_data DISABLE ROW LEVEL SECURITY;
GRANT SELECT, INSERT, UPDATE, DELETE ON winvestment_data TO anon, authenticated;
INSERT INTO winvestment_data (id) VALUES ('main');