Deploy Graft
Docker images
Section titled “Docker images”The easiest way to deploy the Graft backend is via the Docker images.
docker pull ghcr.io/orbitinghail/metastore:latestdocker pull ghcr.io/orbitinghail/pagestore:latest
From source
Section titled “From source”You can build the MetaStore and PageStore from source using:
cargo build --bin metastore --release --features precept/disabledcargo build --bin pagestore --release --features precept/disabled
The resulting binaries will be available at ./target/release/{metastore,pagestore}
.