Skip to content

Storage Setup

JavaScript bundles and assets are stored in a Cloudflare R2 bucket.

Create a bucket named expo-updates-storage:

Terminal window
npx wrangler r2 bucket create expo-updates-storage

Ensure your apps/update-server/wrangler.jsonc has the correct STORAGE binding:

"r2_buckets": [
{
"bucket_name": "expo-updates-storage",
"binding": "STORAGE"
}
]