Coordimap
Installation

Install Coordimap Agent From Binaries

The Coordimap agent publishes release artifacts on GitHub. If you want the most explicit and controllable installation path, install the agent from a pinned release binary.

Why Use The Binary Install?

This installation method is useful when you want to:

  • pin a specific agent version
  • run the agent on a VM or bare-metal host
  • manage the process with your own service manager
  • keep the runtime independent of Docker or Kubernetes

Find The Latest Release

Agent releases are published here:

At the time of this docs update, the latest visible release is v1.2.7.

Download A Release Artifact

Replace v1.2.7 if you want to pin a different version:

curl -L -o coordimap-agent.tar.gz https://github.com/coordimap/agent/releases/download/v1.2.7/coordimap-agent.tar.gz

If you prefer to always follow the latest release asset:

curl -L -o coordimap-agent.tar.gz https://github.com/coordimap/agent/releases/latest/download/coordimap-agent.tar.gz

Extract The Archive

tar -xzf coordimap-agent.tar.gz

Prepare Your Configuration

Create a config.yaml file with your Coordimap API key and the data sources you want to crawl.

Start with these references:

Run The Agent

./agent --config ./config.yaml

If you need verbose logs while validating a new setup:

./agent --debug --config ./config.yaml

Operational Advice

  • Pin a specific release in production.
  • Reuse stable scope_id values even when you upgrade the agent.
  • Keep credentials in environment variables or a secret manager, not directly in the YAML file.

On this page