-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapplication-prod.yml
More file actions
42 lines (38 loc) Β· 911 Bytes
/
application-prod.yml
File metadata and controls
42 lines (38 loc) Β· 911 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
39
40
41
42
spring:
datasource:
url: jdbc:mysql://${db.host}:${db.port}/${db.scheme}
username: ${db.username}
password: ${db.password}
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
properties:
hibernate:
format_sql: false
show_sql: false
show-sql: false
data:
redis:
ssl:
enabled: true
cluster:
nodes: ${redis.host}
max-redirects: 3
mail:
host: smtp.gmail.com
port: 587
username: ${mail-username}
password: ${mail-password}
jwt:
secret: ${kt.jwt.secret}
access-token-expiration: ${kt.jwt.access-token-expiration}
refresh-token-expiration: ${kt.jwt.refresh-token-expiration}
slack:
bot-token: ${slack.token}
log-channel: ${slack.channel}
server:
port: ${server.port}
toss:
payments:
client-key: ${payment.client.key}
secret-key: ${payments.secret-key}
api-url: ${payments.api-url}