-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication.yml
More file actions
46 lines (44 loc) · 1.43 KB
/
application.yml
File metadata and controls
46 lines (44 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
webfleet:
# auth server url
authserver: https://login.webfleet.com
# Authorization credentials, these are provided by Webfleet Solutions.
# Define them as environment variables
clientid: ${WFS_CLIENT_ID}
clientsecret: ${WFS_CLIENT_SECRET}
# This should have been registered together with client information
redirecturi: http://localhost:9080/callback
# offline_access scope is needed to retrieve offline_tokens. If you have some trouble with it try a default scope such as: profile
scopes: offline_access profile
# password used to encrypt stored refresh tokens
token:
password: ${random.value}
# ports
server:
port: 9080
servlet:
session:
persistent: false
spring:
# Jackson JSON Serialization/Deserialization library
jackson:
deserialization:
# We rely to have a full OffsetDateTime with the original LocalDate
adjust-dates-to-context-time-zone: false
serialization:
write-dates-as-timestamps: false
jpa:
hibernate:
ddl-auto: create
# H2 configuration
# DB_CLOSE_ON_EXIT is recommended by Spring Boot so that it handles the closing of the db when it’s ready.
# DB_CLOSE_DELAY it’s in memory there’s no need to delay the shutdown.
sql:
init:
schema-locations: classpath:schema-h2.sql
datasource:
url: jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
username: sa
password:
platform: h2
application:
name: oauth-java-example