-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
61 lines (49 loc) · 3.94 KB
/
.env.example
File metadata and controls
61 lines (49 loc) · 3.94 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ═══════════════════════════════════════════════════════════
# eBay Browse API (OAuth 2.0) - REQUIRED for Live Products
# ═══════════════════════════════════════════════════════════
# Get credentials from: https://developer.ebay.com/my/keys
# Create a "Production" keyset for live data
#
# IMPORTANT: These are the ONLY eBay credentials you need.
# Do NOT use EBAY_APP_ID, EBAY_CERT_ID, or EBAY_DEV_ID (deprecated)
EBAY_CLIENT_ID=your_production_client_id
EBAY_CLIENT_SECRET=your_production_client_secret
# ═══════════════════════════════════════════════════════════
# eBay Partner Network - REQUIRED for Affiliate Tracking
# ═══════════════════════════════════════════════════════════
# Get Campaign ID from: https://epn.ebay.com/
# This tracks your affiliate commissions from product clicks
EBAY_CAMPAIGN_ID=your_campaign_id
# ═══════════════════════════════════════════════════════════
# eBay API Configuration (Advanced - Optional)
# ═══════════════════════════════════════════════════════════
# These have sensible defaults, only change if needed
# EBAY_MARKETPLACE_ID=EBAY_US
# EBAY_OAUTH_SCOPE=https://api.ebay.com/oauth/api_scope
# ═══════════════════════════════════════════════════════════
# Groq AI - FREE Chatbot (Optional)
# ═══════════════════════════════════════════════════════════
# Sign up: https://console.groq.com/
# No credit card needed - 30 requests/minute free tier
GROQ_API_KEY=gsk_your_groq_api_key_here
# ═══════════════════════════════════════════════════════════
# Web3Forms - FREE Email Service (Optional)
# ═══════════════════════════════════════════════════════════
# Sign up: https://web3forms.com/
# Free tier: 250 emails/month
WEB3FORMS_ACCESS_KEY=your_web3forms_access_key_here
# ═══════════════════════════════════════════════════════════
# Analytics (Optional)
# ═══════════════════════════════════════════════════════════
NEXT_PUBLIC_GA_ID=G-XXXXXXXXXX
NEXT_PUBLIC_VERCEL_ANALYTICS_ID=
# ═══════════════════════════════════════════════════════════
# TROUBLESHOOTING
# ═══════════════════════════════════════════════════════════
#
# Live products not showing?
# 1. Verify EBAY_CLIENT_ID and EBAY_CLIENT_SECRET are set
# 2. Remove EBAY_APP_ID if present (deprecated)
# 3. Check /api/health endpoint after deployment
# 4. Look for "✅ eBay OAuth token acquired" in logs
# 5. See: https://github.com/SamoTech/ebay-store/issues/16