← All connection guides

Connect · v0

Connect a v0 app

Create a login for the walker

Open your deployed app and sign up with a fresh email you control. Give FixWalk that email and password on the connections screen. The walker uses this account and no other.

Link your repo

v0 projects deploy through Vercel, which links them to a GitHub repository. Pick that repository on FixWalk's connections screen. FixWalk only reads it.

Give the walker a read-only database key

Read-only, always. We store it encrypted, use it only during a walk, and delete it the moment you disconnect. The walker writes only under its own account, never yours.

v0 projects usually use Neon Postgres or Supabase through Vercel's integrations.

For Neon: in the Neon console open your project, go to Roles and create a role named fixwalk_reader with a long password. Then in the SQL Editor run:

grant usage on schema public to fixwalk_reader;
grant select on all tables in schema public to fixwalk_reader;
alter default privileges in schema public grant select on tables to fixwalk_reader;

Copy the connection string for that role from the Connect panel and paste it on FixWalk's connections screen.

For Supabase: follow the same steps as the Lovable guide.