-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (33 loc) · 980 Bytes
/
.env.example
File metadata and controls
39 lines (33 loc) · 980 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
36
37
38
# Database
MYSQL_URL=jdbc:mysql://localhost:3306/wearagain?characterEncoding=UTF-8&serverTimezone=Asia/Seoul
MYSQL_USERNAME=wearagain
MYSQL_PASSWORD=wearagain
# Redis
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_TIMEOUT=5000
AUTH_REDIS_REFRESH_TOKEN_PREFIX=auth:refresh-token
# JWT
JWT_ISSUER=wearagain
JWT_ACCESS_TOKEN_SECRET=change-me-please
JWT_ACCESS_TOKEN_VALIDITY=900000
JWT_REFRESH_TOKEN_SECRET=change-me-too
JWT_REFRESH_TOKEN_VALIDITY=1209600000
# OAuth Providers
OAUTH_GOOGLE_CLIENT_ID=
OAUTH_GOOGLE_CLIENT_SECRET=
OAUTH_GOOGLE_REDIRECT_URI=http://localhost:8080/api/v1/auth/google/callback
OAUTH_KAKAO_CLIENT_ID=
OAUTH_KAKAO_CLIENT_SECRET=
OAUTH_KAKAO_REDIRECT_URI=http://localhost:8080/api/v1/auth/kakao/callback
OAUTH_APPLE_CLIENT_ID=
OAUTH_APPLE_TEAM_ID=
OAUTH_APPLE_KEY_ID=
OAUTH_APPLE_PRIVATE_KEY=
# Impact
IMPACT_CO2_PER_TICKET=0
IMPACT_WATER_PER_TICKET=0
IMPACT_ENERGY_PER_TICKET=0
# Report generation
REPORT_OUTPUT_DIR=/var/wearagain/reports