Deploy Center
Production-ready packages for Magic Runtime
Current Release
Version 2.0.0 - Production Ready
Magic Runtime v2.0.0
Production Stack
Complete stack: Nginx + Runtime + PostgreSQL + Redis + Prometheus
SHA256: b6e7400e0f81715072fb8480682efc5ab7cabaf4313da87210078fad5a4191a6
Hardened Stack
Production + security hardening, ops runbooks, compliance templates, dev tools
SHA256: 23cb0ccb647fe55a9657e5d10355cd36e9dac312528992cac792d6c4b8be1934
magic-runtime-2.0.0-complete.tar.gz
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
Runtime Core
Just the controller runtime. Bring your own Nginx, Postgres, Redis.
v2.1 · Coming Soon Available in v2.1Production Stack
Complete stack with Nginx, Postgres, Redis, Prometheus.
v2.0.0 · ~45 MB DownloadHardened Stack
Production + security hardening, ops runbooks, compliance templates, dev tools.
v2.0.0 · ~60 MB DownloadLooking for v1.0.0? Download legacy release
Documentation
Guides and references
Quick Start
Get running in 5 minutes with Docker
User Guide
Complete reference for contracts and operations
Security Model
Threat model, sandbox design, hardening checklist
Contract Specification
Full schema reference for controller contracts
Ops Runbook
Operational procedures for production
Quick Deploy Steps
Get running with Docker Compose
Download Package
Get the v2.0.0 Production Stack
wget https://magic.threadsync.io/deploy/magic-runtime-2.0.0-production.tar.gz
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
Configure
Set environment variables
cp .env.example .env # Edit .env with your values
Start Services
Launch the complete stack
docker compose up -d
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