Documentation / Quickstart

Quickstart Guide

From zero to a running confidential enclave in under 5 minutes. Requires a supported cloud environment (Intel TDX, AMD SEV-SNP, or AWS Nitro).

1

Install the SDK

Install the Almure Python SDK using pip. The package includes the CLI tool for local development and testing.

2

Write your enclave config

Create an enclave.yaml file in your project root. This defines the workload image, memory allocation, and attestation policy.

3

Launch the enclave

Use the SDK to launch your workload and retrieve the execution result. The SDK returns an EnclaveResult object containing the output and the attestation report.

4

Verify the attestation

Compare the returned mrenclave against your known-good measurement to confirm the correct workload ran. This is the step your compliance team reviews.

Next steps