-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
49 lines (38 loc) · 1.25 KB
/
env.example
File metadata and controls
49 lines (38 loc) · 1.25 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
# 환경 변수 설정 예시
# 실제 사용시에는 이 파일을 복사하여 .env로 이름을 변경하고
# 실제 값으로 업데이트하세요.
# 기본 설정
NODE_ENV=development
PORT=8080
# Supabase 데이터베이스 설정
DB_HOST=your-db-host.supabase.com
DB_NAME=postgres
DB_USER=postgres.your-project-ref
DB_PASSWORD=your-db-password
DB_PORT=6543
DB_DIALECT=postgres
# Supabase API 설정
SUPABASE_URL=https://your-project-ref.supabase.co
SUPABASE_ANON_KEY=your-supabase-anon-key
SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key
# (선택) 백엔드 프록시 대상 API Origin — Edge Function에서 회원가입을 프록시할 때만 사용
# BACKEND_BASE_URL=https://your-backend.example.com
# 인증 설정
JWT_SECRET=your-jwt-secret-here
# 관리자 계정
ADMIN_EMAIL=admin@teamitaka.com
ADMIN_PASSWORD=your-admin-password
# 이메일 서비스 설정
EMAIL_SERVICE=sendgrid
EMAIL_FROM=noreply@teamitaka.com
SENDGRID_API_KEY=your-sendgrid-api-key
# CORS 설정
CORS_ORIGIN=https://www.teamitaka.com
# UnivCert API
UNIVCERT_API_KEY=your-univcert-api-key
# Google OAuth 설정
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
# Vercel 배포 설정
VERCEL_URL=your-vercel-url
VERCEL_ENV=production