Skip to content

PostgreSQL Installation

JingVT edited this page Mar 7, 2018 · 4 revisions

Here are some useful links for installation:

After installing postgreSQL you need to create two extensions, run the following command in psql:

\c <database name>
create extension btree_gin;
create extension pg_trgm;
Clone this wiki locally