What I learned shipping a 5-day auction marketplace in 30 days (Cloudflare Pages + Supabase)
Notes-from-the-field on shipping ExitBid (auction marketplace for online businesses) — RLS-first architecture, SECURITY DEFINER RPCs, denormalized counters via triggers, realtime publication audit, SMS provider trap.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3872112) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Jason Posted on Apr 29 What I learned shipping a 5-day auction marketplace in 30 days (Cloudflare Pages + Supabase) #supabase #cloudflare #postgres #startup What I learned shipping a 5-day auction marketplace in 30 days (Cloudflare Pages + Supabase) I built an auction marketplace for online businesses called ExitBid — single-region MVP from idea to live in about 30 days.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).