Getting Started

Deploy a Supabase Project

Create your secure, cloud-hosted donor database in just a few clicks using Supabase.

Create your secure, cloud-hosted donor database in just a few clicks using Supabase.

Written By: Winnie Mulli

Last Updated on June 23, 2025

1.2 Deploy a Supabase Project

Visit https://supabase.com and create a free account. Inside your new project:

  • Create a table named donations

  • Include fields like name_first, email_address, amount_gross, created_at,donor_token

Paste this into the SQL editor:

create table donations (
  id uuid primary key default gen_random_uuid(),
  amount_gross numeric not null,
  donar_token text,
  name_first text,
  email_address text,
  created_at timestamp with time zone default now()
)

Supabase acts as your donor database - secure, scalable, and lightning-fast.