-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (28 loc) · 882 Bytes
/
Copy path.env.example
File metadata and controls
35 lines (28 loc) · 882 Bytes
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
# Supabase 설정
SUPABASE_URL=https://xxxxx.supabase.co
SUPABASE_ANON_KEY=your-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
# Transaction Pooler (Port 6543) 사용 권장
DATABASE_URL=postgresql://postgres:[email protected]:6543/postgres
# JWT 설정
JWT_ACCESS_SECRET=change-this-to-a-random-secret-key-in-production
JWT_REFRESH_SECRET=change-this-to-another-random-secret-key-in-production
# 서버 설정
PORT=3000
NODE_ENV=development
# Redis 설정
REDIS_URL=redis://redis:6379
REDIS_PORT=6379
# CORS 설정
CORS_ORIGIN=*
# Kakao Map API
KAKAO_REST_API_KEY=your-kakao-rest-api-key
# SMTP 설정 (프로덕션용)
# 개발 환경에서는 Ethereal Email이 자동으로 생성됩니다
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_SECURE=false
SMTP_PASS=your-app-password
# 로그 레벨
LOG_LEVEL=debug