Skip to content

rauchg/how-is-this-not-illegal

Repository files navigation

How is this not illegal

This beautiful tweet by Dan Abramov brought to life.

Dan Abramov's tweet jokingly suggesting querying Postgres directly from a React component should be illegal

Setting it up

  1. Create a Vercel Postgres database and link it to your project
  2. Go to its settings and copy the psql command
  3. Add -f sql/init.sql like so to populate the database with some data:
    psql "postgres:https://{user}:{password}@{name}.{location}.postgres.vercel-storage.com:5432/verceldb" -f init.sql