Merged in readme-edits (pull request #105)

Add instructions on including shared libraries in postgres.conf to README

Approved-by: Matvey Arye
Approved-by: ci-vast
This commit is contained in:
Ajay Kulkarni 2017-03-07 16:43:08 +00:00
commit 4c558a9466

View File

@ -28,6 +28,15 @@ make
make install
```
Also, you will need to edit your `postgres.conf` file to include
necessary libraries, and then restart PostgreSQL:
```bash
# Modify postgres.conf to add required libraries. For example,
shared_preload_libraries = 'dblink,timescaledb'
# Then, restart PostgreSQL
```
### Option 2: Build and run in Docker
```bash