Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 334 Bytes

readme.md

File metadata and controls

22 lines (15 loc) · 334 Bytes

Database Setup

Ensure DATABASE_URL set in a .env file and points to a Postgres database.

Then you:

yarn db:init

TODO:

  • seems this line isnt running in migrations i had to connect with psql and run manually:
SELECT
    *
FROM
    pg_create_logical_replication_slot('zero_slot_r1', 'pgoutput');

VACUUM;