-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
61 lines (52 loc) · 1.94 KB
/
.env.example
File metadata and controls
61 lines (52 loc) · 1.94 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
# ==========================================
# Database
# ==========================================
DATABASE_URL="mysql://modua_user:modua_password@localhost:3306/modua_aac"
# ==========================================
# Redis (캐싱용)
# ==========================================
REDIS_URL="redis://localhost:6379"
REDIS_HOST="localhost"
REDIS_PORT="6379"
REDIS_DB="0"
# ==========================================
# JWT
# ==========================================
JWT_SECRET="your-super-secret-jwt-key-change-this"
JWT_ACCESS_EXPIRES_IN="1h"
JWT_REFRESH_EXPIRES_IN="14d"
# ==========================================
# OAuth - Kakao
# ==========================================
KAKAO_CLIENT_ID="your-kakao-client-id"
KAKAO_CLIENT_SECRET="your-kakao-client-secret"
KAKAO_REDIRECT_URI="http://localhost:3000/api/auth/social/kakao/callback"
# ==========================================
# OAuth - Google
# ==========================================
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
GOOGLE_REDIRECT_URI="http://localhost:3000/api/auth/social/google/callback"
# ==========================================
# OAuth - Naver
# ==========================================
NAVER_CLIENT_ID="your-naver-client-id"
NAVER_CLIENT_SECRET="your-naver-client-secret"
NAVER_REDIRECT_URI="http://localhost:3000/api/auth/social/naver/callback"
# ==========================================
# Server
# ==========================================
NODE_ENV="development"
PORT="3000"
# ==========================================
# CORS (프론트엔드 URL)
# ==========================================
CORS_ORIGIN="http://localhost:5173"
# ==========================================
# FastAPI
# ==========================================
FASTAPI_URL="http://localhost:8000"
# ==========================================
# OpenAI (FastAPI 서버에서 사용)
# ==========================================
OPENAI_API_KEY="sk-your-openai-api-key-here"