Files
vexplor_dev/backend-node/.env.shared
kjs ccb0c8df4c Add environment variable example and update .gitignore
- Created a new .env.example file to provide a template for environment variables, including database connection details, JWT settings, encryption keys, and external API keys.
- Updated .gitignore to include additional test output directories and archive files, ensuring that unnecessary files are not tracked by Git.
- Removed outdated approval test reports and scripts that are no longer needed, streamlining the project structure.

These changes improve the clarity of environment configuration and maintain a cleaner repository.
2026-04-01 12:12:15 +09:00

46 lines
1.9 KiB
Plaintext

# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# 🔑 공유 API 키 (팀 전체 사용)
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#
# ⚠️ 주의: 이 파일은 Git에 커밋됩니다!
# 실제 API 키는 .env 파일에 설정하세요.
# 여기에는 키 형식 예시만 기록합니다.
#
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# 한국은행 환율 API 키
# 발급: https://www.bok.or.kr/portal/openapi/OpenApiGuide.do
BOK_API_KEY=your_bok_api_key_here
# 기상청 API Hub 키
# 발급: https://apihub.kma.go.kr/
KMA_API_KEY=your_kma_api_key_here
# ITS 국가교통정보센터 API 키
# 발급: https://www.its.go.kr/
ITS_API_KEY=your_its_api_key_here
# 한국도로공사 OpenOASIS API 키
# 발급: https://data.ex.co.kr/ (OpenOASIS 신청)
EXWAY_API_KEY=your_exway_api_key_here
# ExchangeRate API 키 (백업용, 선택사항)
# 발급: https://www.exchangerate-api.com/
# EXCHANGERATE_API_KEY=your_exchangerate_api_key_here
# Kakao API 키 (Geocoding용, 선택사항)
# 발급: https://developers.kakao.com/
# KAKAO_API_KEY=your_kakao_api_key_here
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# 📝 사용 방법
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#
# 1. 이 파일을 복사하여 .env 파일 생성:
# $ cp .env.shared .env
#
# 2. 그대로 사용하면 됩니다!
# (팀 전체가 동일한 키 사용)
#
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━