forked from Turtle-Hwan/LinKU
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.development.example
More file actions
32 lines (29 loc) · 1.11 KB
/
.env.development.example
File metadata and controls
32 lines (29 loc) · 1.11 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
# ========================================
# 개발 환경 설정 파일
# ========================================
#
# 이 파일을 복사하여 .env.development 파일을 만드세요:
# cp .env.development.example .env.development
#
# 그 다음 VITE_GA_API_SECRET 값을 실제 값으로 변경하세요.
#
# ========================================
# Google Analytics API Secret 발급 방법
# ========================================
#
# 1. https://analytics.google.com/ 접속
# 2. Admin → Data Streams → 해당 스트림 선택
# 3. Measurement Protocol API secrets → Create
# 4. 생성된 Secret value를 아래 VITE_GA_API_SECRET에 입력
#
# ⚠️ 주의: .env.development 파일은 git에 올리지 마세요!
# API Secret은 절대 공유하지 마세요!
#
# ========================================
# 환경 설정 (변경하지 마세요)
VITE_ENVIRONMENT=development
# Google Analytics Measurement Protocol API Secret
# 아래 값을 실제 API Secret으로 교체하세요
VITE_GA_API_SECRET=your_api_secret_here
# 우리 Backend 주소
VITE_API_BASE_URL=https://this-is-linku-backend.example/api