First you'll want to create the postgres-plv8 docker (you can also just use docker-compose up -d
):
make up
Now that the postgres process is running, install the extensions:
make install
This basically ssh
s into the postgres instance with the packages/
folder mounted as a volume, and installs the bundled sql code as pgxn extensions.
Now you can use CREATE EXTENSION
in your sql projects!