
A marketplace built for one specific moment: someone is leaving a city and has three weeks to sell a flat's worth of furniture. Listings group into a single moving sale, so one person's whole clear-out reads as one thing instead of fourteen unrelated posts.
Next.js App Router, with Supabase for Postgres, auth and file storage. Every table sits behind row-level security, so what someone can read or write is decided in the database rather than in the interface. Photos are compressed in the browser before upload. Playwright covers the main flows.
Making it publicly clickable without exposing the real thing.
The demo runs against its own Supabase project and never holds the production keys, so it cannot reach real data even if the code were wrong. One flag switches on anonymous sign-in: every visitor is quietly signed in as their own throwaway account and sees the app as a logged-in user, with row-level security still holding visitors apart from each other. The same flag adds a noindex header, so nothing a visitor types can surface in a search result.
A scheduled job wipes and re-seeds the demo nightly, but only when someone actually changed something. Most nights it checks, finds nothing, and does no work.
Worth knowing before you click: the demo resets, so anything you make there will not survive the night.