Retour au blog

Getting started with PWASK

How-To29 décembre 20251 min de lecturePar l'équipe PWASK

Step-by-step guide to clone, configure Supabase, run locally, and deploy — with environment and email setup tips.

Getting started with PWASK

PWASK is a production-ready PWA starter built on Next.js + Supabase. This guide helps you launch locally and deploy confidently.

Local setup

  1. Clone and pnpm install.
  2. Copy .env.example.env.local; add SUPABASE_URL + SUPABASE_ANON_KEY.
  3. Run pnpm dev and visit http://localhost:3000.

Supabase

  • Create project (dev); apply migrations with supabase db push.
  • Enable RLS for user-owned tables; use auth.uid() in policies.

Deploy

  • Vercel (recommended), Netlify, Cloudflare, or Docker.
  • Set env vars per platform; validate via health check page.

See the full documentation in /docs/getting-started.