Skip to content

Installation

Prerequisites

  • Go 1.21 or later
  • PostgreSQL 12 or later
  • Make (optional, for using Makefile targets)

Building from Source

Clone the Repository

git clone https://github.com/pgedge/pgedge-docloader.git
cd pgedge-docloader

Download Dependencies

make deps

Or using Go directly:

go mod download

Build the Binary

make build

This creates the pgedge-docloader binary in the current directory.

Install System-Wide

To install the binary to /usr/local/bin:

make install

To install to a custom location:

PREFIX=/opt/local make install

Verify Installation

After installation, verify the tool is working:

pgedge-docloader version

Check supported formats:

pgedge-docloader formats

Docker Installation (Future)

Docker images may be provided in future releases.

Next Steps