Deploy Center

Production-ready packages for Magic Runtime

Current Release

Version 2.0.0 - Production Ready

Magic Runtime v2.0.0

February 2026 Stable Security Verified
Recommended

Production Stack

Complete stack: Nginx + Runtime + PostgreSQL + Redis + Prometheus

SHA256: b6e7400e0f81715072fb8480682efc5ab7cabaf4313da87210078fad5a4191a6
Download

Hardened Stack

Production + security hardening, ops runbooks, compliance templates, dev tools

SHA256: 23cb0ccb647fe55a9657e5d10355cd36e9dac312528992cac792d6c4b8be1934 magic-runtime-2.0.0-complete.tar.gz
Download

Verify Any Downloaded Package

# SHA256SUMS covers ALL artifacts (Production Stack + Hardened Stack)
wget https://magic.threadsync.io/deploy/SHA256SUMS

# Verify whichever package you downloaded
sha256sum -c SHA256SUMS --ignore-missing

Verify Signed Checksums (Recommended)

# Step 1: Import ThreadSync public key (one-time)
wget https://magic.threadsync.io/deploy/threadsync-releases.asc
gpg --import threadsync-releases.asc

# Step 2: Verify the signed checksums file
wget https://magic.threadsync.io/deploy/SHA256SUMS.sig
gpg --verify SHA256SUMS.sig SHA256SUMS
# Expected: "Good signature from "ThreadSync Releases <releases@threadsync.io>"

# Step 3: Verify your downloaded artifact against the signed checksums
sha256sum -c SHA256SUMS --ignore-missing

This is the recommended path. SHA256SUMS.sig covers all artifacts in a single signature.

Per-Artifact GPG Signatures (Also Available)

# Every artifact also ships with its own .asc detached signature.
# Production Stack:
gpg --verify magic-runtime-2.0.0-production.tar.gz.asc magic-runtime-2.0.0-production.tar.gz

# Hardened Stack:
gpg --verify magic-runtime-2.0.0-complete.tar.gz.asc magic-runtime-2.0.0-complete.tar.gz

# Key fingerprint: 9386 38C7 62E1 3E60 324E 8EFF 92A0 0A9E F162 D394

All Packages

Choose your deployment package

Minimal

Runtime Core

Just the controller runtime. Bring your own Nginx, Postgres, Redis.

v2.1 · Coming Soon Available in v2.1
Enterprise

Hardened Stack

Production + security hardening, ops runbooks, compliance templates, dev tools.

v2.0.0 · ~60 MB Download

Looking for v1.0.0? Download legacy release

Documentation

Guides and references

Quick Start

Get running in 5 minutes with Docker

View

User Guide

Complete reference for contracts and operations

View

Security Model

Threat model, sandbox design, hardening checklist

View

Contract Specification

Full schema reference for controller contracts

View

Ops Runbook

Operational procedures for production

View

Quick Deploy Steps

Get running with Docker Compose

1

Download Package

Get the v2.0.0 Production Stack

wget https://magic.threadsync.io/deploy/magic-runtime-2.0.0-production.tar.gz
2

Verify & Extract

Verify checksum and unpack

sha256sum magic-runtime-2.0.0-production.tar.gz
# Verify: b6e7400e0f81715072fb8480682efc5ab7cabaf4313da87210078fad5a4191a6
tar -xzf magic-runtime-2.0.0-production.tar.gz && cd magic-runtime
3

Configure

Set environment variables

cp .env.example .env
# Edit .env with your values
4

Start Services

Launch the complete stack

docker compose up -d
5

Initialize Database

Run migrations

./scripts/init_db.sh

Requirements

  • Docker 20.10+ and Docker Compose 2.0+
  • Linux server with 4GB+ RAM (8GB recommended)
  • Ports 80 and 8000 available