Find where EV chargers are missing — before anyone else installs them.
EV charging infrastructure gap analyzer that turns raw charging station data into actionable coverage maps and density scores. Enter any US address or ZIP code to see a Charging Desert Score (0–100) showing how underserved that area is.
-
Install dependencies:
npm install
-
Configure environment variables:
Copy
.env.exampleto.env.localand fill in the values:cp .env.example .env.local
NEXT_PUBLIC_SUPABASE_URL— your Supabase project URLNEXT_PUBLIC_SUPABASE_ANON_KEY— your Supabase anon/public keySUPABASE_SERVICE_ROLE_KEY— your Supabase service role keyOPENCHARGEMAP_API_KEY— free API key from openchargemap.org
-
Create Supabase tables:
Run the SQL from
IMPLEMENTATION-PLAN.mdto createprofiles,reports, andapi_cachetables. -
Run the development server:
npm run dev
Open http://localhost:3000.
See PROJECT-1775284123-SPEC.md for the full product specification.