Quickstart

Provision a real Postgres database and run your first query in under a minute.

1. Sign in

Open wyro.vercel.app and sign in with Google. A user record is created on first login; your plan defaults to hobby.

2. Create a project

From the dashboard, hit + New project. A project is the unit that holds your schema, queries, and a single dedicated database.

3. Provision a database

Inside the project, open SQL Editor from the sidebar. In the left panel, click the + next to Databases, pick a name (alphanumeric, dashes/underscores ok), and confirm.

Note:Provisioning a real database requires a paid plan. Hobby accounts can design schemas and write SQL drafts but cannot allocate live databases.

Status will read Provisioning for ~30 seconds and flip to Healthy automatically.

4. Run SQL

Type into the editor and press ⌘↵ (or click Run). Try:

select now();

Or create a table:

create table notes (
  id serial primary key,
  body text not null,
  created_at timestamptz default now()
);

5. Browse rows

Open Table Editor from the project sidebar. Your newly-created table appears under Tables. Click it to view, edit, or insert rows without writing SQL.