-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication-local.yaml
More file actions
46 lines (38 loc) · 1.03 KB
/
application-local.yaml
File metadata and controls
46 lines (38 loc) · 1.03 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
spring:
mvc:
hidden-method:
filter:
enabled: true
docker:
compose:
enabled: false
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:yappu;MODE=Oracle;DATABASE_TO_LOWER=TRUE;NON_KEYWORDS=VALUE
username: sa
password:
sql:
init:
mode: never
jpa:
open-in-view: false
database-platform: org.hibernate.dialect.OracleDialect
hibernate:
ddl-auto: create-drop
show-sql: true
h2:
console:
enabled: true
path: /h2-console
logging:
level:
p6spy: DEBUG
jwt:
secret_key: thisisforlocalsecretkeyonlyusinginlocalenvironmentthisisforlocalsecretkeyonlyusinginlocalenvironment
access_token_expiration_times: 3600000 # 1hour = 1000(=1s) * 60 * 60
refresh_token_expiration_times: 1209600000 # 2weeks = 1000(=1s) * 60 * 60 * 24 * 14
management:
endpoints:
web:
exposure:
exclude: "*"