Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 535 Bytes

readme.md

File metadata and controls

22 lines (14 loc) · 535 Bytes

getting started

start the postgres db process

First you'll want to create the postgres-plv8 docker (you can also just use docker-compose up -d):

make up

install the Postgres extensions

Now that the postgres process is running, install the extensions:

make install

This basically sshs into the postgres instance with the packages/ folder mounted as a volume, and installs the bundled sql code as pgxn extensions.

now you can deploy code

Now you can use CREATE EXTENSION in your sql projects!