forked from Dongguk-ICE-HANIUM/Medi_Guard_Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication-dev.yml
More file actions
79 lines (74 loc) · 1.68 KB
/
Copy pathapplication-dev.yml
File metadata and controls
79 lines (74 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_NAME}?useSSL=false&useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true&serverTimezone=Asia/Seoul
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
jpa:
hibernate:
ddl-auto: update
properties:
hibernate:
show_sql: true
format_sql: true
highlight_sql: true
use_sql_comments: true
dialect: org.hibernate.dialect.MySQL8Dialect
jwt:
secret: ${JWT_SECRET}
access-token:
expiration: ${JWT_ACCESS_TOKEN_EXPIRATION}
refresh-token:
expiration: ${JWT_REFRESH_TOKEN_EXPIRATION}
server:
address: 0.0.0.0
logging:
level:
org.springframework.security: debug
org.springframework.data.redis: debug
org.springframework.boot.actuate.info: DEBUG
web: debug
management:
server:
port: ${ACTUATOR_PORT}
endpoints:
web:
exposure:
include:
- health
- info
- prometheus
- metrics
endpoint:
health:
enabled: true
show-details: always
info:
enabled: true
prometheus:
enabled: true
metrics:
export:
prometheus:
enabled: true
info:
env:
enabled: true
git:
mode: simple
springdoc:
default-consumes-media-type: application/json
default-produces-media-type: application/json
api-docs:
groups:
enabled: true
swagger-ui:
operations-sorter: alpha
tags-sorter: alpha
path: /swagger-ui
url: /v3/api-docs
disable-swagger-default-url: true
display-query-params-without-oauth2: true
doc-expansion: none
paths-to-match:
- /**