
Build it yourself: Meetim
Learn step by step how to build Meetim yourself.
Step 1 of 5
Events & contacts tables in Supabase
Create two tables: events (name, location, date range) and contacts (name, company, lead score, note, tags) with event reference.
sql
create table events (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
name text not null,
location text,
starts_on date,
ends_on date
);
create table contacts (
id uuid primary key default gen_random_uuid(),
user_id uuid references auth.users,
event_id uuid references events(id),
name text not null,
company text,
role text,
email text,
phone text,
note text,
lead_score text check (lead_score in ('hot','warm','cold')),
tags text[],
created_at timestamptz default now()
);Learn to build Meetim
Module 07: The Agent Family System
Design and build a complete agent family – multiple specialized agents that work together seamlessly. Learn orchestration, delegation, and system design.
4.5 hours12 Lessons
Go to course module