-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
70 lines (53 loc) · 2.34 KB
/
.env.example
File metadata and controls
70 lines (53 loc) · 2.34 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
62
63
64
65
66
67
68
69
70
# =================================
# Bootpay Commerce Example 환경 설정
# =================================
# 이 파일을 복사하여 .env.development, .env.production 등을 생성하세요.
# 실제 키는 https://admin.bootpay.co.kr 에서 발급받을 수 있습니다.
# API Base URL (Vite 빌드 시 사용)
# 로컬 개발: 빈 값 (wrangler pages dev 사용 시 같은 포트에서 API 처리)
# 프로덕션: 빈 값 (상대 경로 사용)
VITE_API_BASE_URL=
# =================================
# Bootpay Application IDs
# =================================
# Widget 예제에서 사용하는 Application ID
# https://admin.bootpay.co.kr > 프로젝트 > 설정 > 앱정보에서 확인 가능
# Development (테스트/샌드박스)
BOOTPAY_APPLICATION_ID_DEV=your_development_application_id
# Stage (스테이징 환경)
BOOTPAY_APPLICATION_ID_STAGE=your_stage_application_id
# Production (실서비스)
BOOTPAY_APPLICATION_ID_PROD=your_production_application_id
# =================================
# Bootpay Client Keys
# =================================
# Plan/구독 예제에서 사용하는 Client Key
# Development
BOOTPAY_CLIENT_KEY_DEV=your_development_client_key
# Stage
BOOTPAY_CLIENT_KEY_STAGE=your_stage_client_key
# Production
BOOTPAY_CLIENT_KEY_PROD=your_production_client_key
# =================================
# Bootpay Product IDs (Plan/Subscription)
# =================================
# 정기결제 플랜 상품 ID (https://admin.bootpay.co.kr > 상품에서 생성)
# Development - Starter Plan
BOOTPAY_PLAN_STARTER_MONTHLY_DEV=your_starter_monthly_product_id
BOOTPAY_PLAN_STARTER_YEARLY_DEV=your_starter_yearly_product_id
# Development - Pro Plan
BOOTPAY_PLAN_PRO_MONTHLY_DEV=your_pro_monthly_product_id
BOOTPAY_PLAN_PRO_YEARLY_DEV=your_pro_yearly_product_id
# Development - Enterprise Plan
BOOTPAY_PLAN_ENTERPRISE_MONTHLY_DEV=your_enterprise_monthly_product_id
BOOTPAY_PLAN_ENTERPRISE_YEARLY_DEV=your_enterprise_yearly_product_id
# (Stage/Production도 동일한 패턴으로 추가)
# =================================
# Bootpay Product IDs (Payment Link)
# =================================
# 결제링크 상품 ID
# Development
BOOTPAY_PRODUCT_BASIC_DEV=your_basic_product_id
BOOTPAY_PRODUCT_PRO_DEV=your_pro_product_id
BOOTPAY_PRODUCT_ENTERPRISE_DEV=your_enterprise_product_id
# (Stage/Production도 동일한 패턴으로 추가)