-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (23 loc) · 1.62 KB
/
.env.example
File metadata and controls
28 lines (23 loc) · 1.62 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
# ============================================================
# InSeoul — 환경 변수 템플릿 (Git 공유용 예시 파일)
# 복사 후 .env 로 저장하고 실제 키를 입력하세요.
# $ cp .env.example .env
# ============================================================
# ── 국토교통부 실거래가 공공 API ──────────────────────────────
# 발급처: https://www.data.go.kr
# 서비스명: 국토교통부_아파트매매 실거래가 상세 자료
VITE_MOLIT_API_KEY=your_molit_api_key_here
# ── 카카오 지도 API (6주차 - 실제 지도 연동) ──────────────────
# 발급처: https://developers.kakao.com
VITE_KAKAO_MAP_KEY=your_kakao_map_key_here
# ── 네이버 지도 API (대체 옵션) ───────────────────────────────
# 발급처: https://console.ncloud.com/naver-service/application
VITE_NAVER_MAP_CLIENT_ID=your_naver_client_id_here
# ── RAG 챗봇 백엔드 ──────────────────────────────────────────
# 로컬 FastAPI 서버 주소 (backend/ 디렉터리에서 uvicorn 실행 필요)
# $ cd backend && uvicorn main:app --host 127.0.0.1 --port 8000 --reload
VITE_CHATBOT_API_URL=http://127.0.0.1:8000
# ── 앱 설정 ──────────────────────────────────────────────────
VITE_APP_ENV=development
VITE_CACHE_TTL_MS=86400000
VITE_API_REQUEST_DELAY_MS=200