/placeholder1

not even a name yet

Primary LanguageShellGNU Affero General Public License v3.0AGPL-3.0

Prerequisites

yarn

Running

make dev

Open http://localhost:4411 in the browser.

Postgres

brew install postgres
brew services start postgresql
psql postgres
> CREATE ROLE placeholder WITH LOGIN PASSWORD 'placeholder';
> CREATE DATABASE placeholder;
> \q
psql postgres -U placeholder
create table record
(
  id   serial not null
    constraint table_name_pkey
    primary key,
  data jsonb
);