ProDesk Day Pass System
One-time setup — takes 3 minutes
Step 1
Create a free Supabase project
Go to supabase.com → New project → choose a name (e.g. prodesk) → set a database password → Create.

Once created, go to Settings → API and copy your Project URL and anon public key.
Step 2
Create the database table
In Supabase, go to SQL Editor → paste this and click Run:
create table day_passes (
  id uuid default gen_random_uuid() primary key,
  code text unique not null,
  name text not null,
  platform text,
  handle text,
  followers text,
  email text,
  valid_date date not null,
  location text not null,
  pass_type text,
  notes text,
  status text default 'active',
  created_at timestamptz default now(),
  used_at timestamptz
);

-- Allow public read/write (staff use only, not public site)
alter table day_passes enable row level security;
create policy "allow_all" on day_passes for all using (true) with check (true);
        
Step 3
Enter your Supabase credentials
ProDesk Day Pass
Connecting…
Actions
Data
Config
Influencer details

Single use · Valid until selected date

Check in an influencer

Enter the code the influencer received. The system will verify and mark it as used.

—
Total issued
—
Redeemed
—
Available
—
Expired unused
Loading…
Branch locations
Database connection
Connected to Supabase. All data is shared across devices and staff in real time. URL:
Export & backup