Getting Started
Initialize your distributed infrastructure. This blueprint guides you through Shopify synchronization, secure authentication, and metaobject modeling.
Install Shopify App
Navigate to Marketplace
Access the Shopify App Store and search for 'SaveLayer'.
Grant Permissions
Approve read/write access for metaobjects and webhooks.
Confirm Installation
Wait for the secure handshake to complete. Redirecting to dashboard...
Instance Health
Integration Guide
View the comprehensive video walkthrough for Shopify Plus merchants.
Initial Configuration
Establish your secure environment. Define authentication headers and specify which environment variables will drive your SaveLayer instance.
version: "2.4.0"
environment: production
auth:
provider: savelayer-native
strict_ssl: true
sync:
throttle: 150ms
retry_policy: exponential
First Metaobject
Define the structural integrity of your custom data types. Preview the schema before broadcasting.
| Field | Type | Validator |
|---|---|---|
| material_density | integer | range(0, 100) |
| origin_node | single_line_text | regex("^[A-Z]{2}$") |
| safety_certification | boolean | non_null |