Getting started with PWASK
How-To29 décembre 2025•1 min de lecture•Par l'équipe PWASK
Step-by-step guide to clone, configure Supabase, run locally, and deploy — with environment and email setup tips.

PWASK is a production-ready PWA starter built on Next.js + Supabase. This guide helps you launch locally and deploy confidently.
Local setup
- Clone and
pnpm install. - Copy
.env.example→.env.local; addSUPABASE_URL+SUPABASE_ANON_KEY. - Run
pnpm devand visithttp://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.