-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (38 loc) · 1.76 KB
/
Copy path.env.example
File metadata and controls
47 lines (38 loc) · 1.76 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
# ==================================
# MicroCMS API Configuration
# ==================================
# MicroCMSのサービスドメイン(例: your-service.microcms.io の "your-service" 部分)
MICROCMS_SERVICE_DOMAIN=your_service_domain
# MicroCMS APIキー(管理画面 > APIキー から取得)
MICROCMS_API_KEY=your_microcms_api_key
# ==================================
# Site Configuration
# ==================================
# Site URL (use your production URL when deploying)
NEXT_PUBLIC_SITE_URL=http://localhost:3000
# Google Analytics ID (optional)
NEXT_PUBLIC_GA_ID=G-XXXXXXXXXX
# ==================================
# Email Configuration (Optional)
# ==================================
# SMTP settings for contact form
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your_email@example.com
SMTP_PASS=your_app_specific_password
# Admin email to receive contact form submissions
CONTACT_EMAIL=contact@yourdomain.com
# ==================================
# Shopify Configuration (Optional)
# ==================================
# Only needed if you want to integrate Shopify for e-commerce
# API接続用: 必ず *.myshopify.com ドメインを使用してください
# 例: your-store.myshopify.com
# 注意: カスタムドメイン(shop.your-domain.comなど)は使用できません
SHOPIFY_STORE_DOMAIN=your-store.myshopify.com
SHOPIFY_STOREFRONT_ACCESS_TOKEN=your_shopify_storefront_access_token_here
SHOPIFY_ADMIN_ACCESS_TOKEN=your_shopify_admin_access_token_here
# オンラインストアのカスタムドメイン(商品URLの生成に使用)
# カスタムドメインを使用している場合はここに設定
# 使用していない場合は、SHOPIFY_STORE_DOMAINと同じ値を設定
NEXT_PUBLIC_SHOPIFY_ONLINE_STORE_DOMAIN=shop.your-domain.com