-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
33 lines (27 loc) · 1.21 KB
/
env.example
File metadata and controls
33 lines (27 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Lua Shopify Agent - Environment Variables
# Copy this to .env and update with your actual values
# ============================================
# SHOPIFY CONFIGURATION (Required)
# ============================================
# Your Shopify store domain (myshopify.com format)
# Example: my-store.myshopify.com
SHOPIFY_DOMAIN=your-store.myshopify.com
# Shopify Admin API Access Token
# Get this from: Shopify Admin → Settings → Apps → Develop apps → Create app
# Required scopes: read_products, write_products, read_inventory, write_draft_orders
SHOPIFY_ACCESS_TOKEN=shpat_your_access_token_here
# Currency code for prices (default: USD)
# Examples: USD, EUR, GBP, ZAR, AUD
SHOPIFY_CURRENCY=USD
# ============================================
# LUA API KEY (Optional)
# ============================================
# Only needed for CI/CD environments
# In local development, use `lua auth login` instead
# LUA_API_KEY=your-lua-api-key-here
# ============================================
# NOTES
# ============================================
# - Use `lua env sandbox -k KEY -v VALUE` to set variables in sandbox
# - Use `lua env production -k KEY -v VALUE` for production
# - Values set via CLI take precedence over this file