Skip to content

Installation

Tested with PostgreSQL 12 and 13.

Setup

Server

Clone this repo and run

1
make && make install

To make the extension available to the database add on postgresql.conf:

1
shared_preload_libraries = 'pg_net'

Database

To enable the extension in PostgreSQL we must execute a create extension statement. The extension creates its own schema/namespace named net to avoid naming conflicts.

1
create extension pg_net;