Sign in to view, present and update the live project board. Anyone on the team can step in.
Use your work email. Once created you can sign in from any laptop.
A one-time, free setup so your remote team shares one live board. About 10 minutes; only the admin does it, then everyone signs in.
create table if not exists projects ( id text primary key, data jsonb not null, updated_at timestamptz default now() ); create table if not exists team_members ( name text primary key ); create table if not exists settings ( key text primary key, value text ); alter table projects enable row level security; alter table team_members enable row level security; alter table settings enable row level security; create policy "team rw" on projects for all to authenticated using (true) with check (true); create policy "team rw" on team_members for all to authenticated using (true) with check (true); create policy "team rw" on settings for all to authenticated using (true) with check (true);
These names appear as tappable options when you assign or reassign a project.