-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (45 loc) · 1.43 KB
/
.env.example
File metadata and controls
52 lines (45 loc) · 1.43 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
# Taba Backend 환경 변수 예제
# 이 파일을 .env로 복사하고 실제 값으로 수정하세요
# cp .env.example .env
# ============================================
# 데이터베이스 설정
# ============================================
DB_HOST=localhost
DB_PORT=3306
DB_NAME=taba
DB_USERNAME=taba_user
DB_PASSWORD=taba_password
# ============================================
# Redis 설정 (선택사항)
# ============================================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
# ============================================
# JWT 설정
# ============================================
JWT_SECRET=your-256-bit-secret-key-change-this-in-production-environment
JWT_EXPIRATION=604800000
# ============================================
# 서버 설정
# ============================================
SERVER_PORT=8080
SERVER_URL=http://localhost:8080/api/v1
# ============================================
# Spring Profile
# ============================================
SPRING_PROFILES_ACTIVE=prod
# ============================================
# 이메일 설정 (선택사항)
# ============================================
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=
MAIL_PASSWORD=
# ============================================
# AWS S3 설정 (선택사항, 현재는 사용하지 않음)
# ============================================
AWS_S3_BUCKET=
AWS_S3_REGION=ap-northeast-2
AWS_ACCESS_KEY=
AWS_SECRET_KEY=