# Shopify Theme Development Credentials
# --------------------------------
# Copy this file to .env and add your credentials

# Store information (required)
SHOPIFY_STORE=your-store-name            # Your store name (without .myshopify.com)

# AUTHENTICATION OPTION 1: API key and secret (for private apps)
SHOPIFY_API_KEY=your_api_key             # Your Admin API key
# SHOPIFY_PASSWORD=your_api_secret       # Your Admin API shared secret

# AUTHENTICATION OPTION 2: Access token (for custom apps)
# SHOPIFY_API_KEY=your_api_key           # Your API key (required only for dev server UI)
SHOPIFY_PASSWORD=shpat_your_access_token # Your Admin API access token (starts with shpat_)

# Optional settings
# SHOPIFY_THEME_ID=123456789             # Theme ID if you want to use an existing theme
                                         # If not provided, a new development theme will be created automatically 