Skip to content

Installation

rCommerce ships as a single static binary. No runtime to install, no dependencies beyond PostgreSQL.

Download the latest release for your platform from GitHub Releases.

Terminal window
# Linux x86-64
curl -LO https://github.com/PDG-Global/rcommerce-core/releases/latest/download/rcommerce-linux-x86_64
chmod +x rcommerce-linux-x86_64
sudo mv rcommerce-linux-x86_64 /usr/local/bin/rcommerce
# macOS (Apple Silicon)
curl -LO https://github.com/PDG-Global/rcommerce-core/releases/latest/download/rcommerce-darwin-aarch64
chmod +x rcommerce-darwin-aarch64
sudo mv rcommerce-darwin-aarch64 /usr/local/bin/rcommerce
OSArchitectures
Linuxx86-64, ARM64, RISC-V, ARMv7
macOSx86-64, ARM64
FreeBSDx86-64, ARM64
Dockerx86-64, ARM64

No Windows support.

target/release/rcommerce
git clone https://github.com/PDG-Global/rcommerce-core.git
cd rcommerce-core
cargo build --release

Requires Rust 1.70+.

Terminal window
docker pull ghcr.io/pdg-global/rcommerce:latest

Or build locally:

Terminal window
docker build -t rcommerce .
Terminal window
rcommerce --version
# rcommerce 0.1.1

Quickstart — connect to PostgreSQL and start serving.