Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 733 Bytes

INSTALL.md

File metadata and controls

30 lines (22 loc) · 733 Bytes

Bundle Installation

Requirements

Bundle requires the following extensions, which must be manually installed before bundle can be installed:

  • meta
  • uuid-ossp (included with PostgreSQL)
  • pgcrypto (included with PostgreSQL)

Install into PostgreSQL

cd bundle/
make && make install

Create Extensions

-- first install the meta extension
create extension if not exists hstore schema public;
create extension if not exists meta;

-- install bundle's dependencies
create extension if not exists pgcrypto schema public;
create extension if not exists "uuid-ossp" schema public;

-- install bundle
create extension bundle;