-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathapplication.yml
53 lines (46 loc) · 1.3 KB
/
application.yml
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
server:
http2:
enabled: true
spring:
datasource:
url: jdbc:postgresql://${POSTGRES_DB_SERVER_ADDRESS:localhost}:${POSTGRES_DB_SERVER_PORT:5432}/
username: ${POSTGRES_USER:postgres}
password: ${POSTGRES_PASSWORD:example}
hikari:
pool-name: SpringBootBoilerplateHikariPool
jpa:
hibernate:
ddl-auto: create
open-in-view: false
jta:
enabled: false
springdoc:
show-actuator: true
management:
endpoint:
health:
show-details: ALWAYS
probes:
enabled: true
endpoints:
web:
exposure:
include: "*"
logging:
level:
org.springframework: INFO
com.farukgenc.boilerplate.springboot: INFO
## FIXME : Customize JWT token and Swagger information for your application
jwt:
secretKey: secret
issuer: www.farukgenc.com
expirationMinute: 10
swagger:
contact-name: Faruk Genc
contact-mail: [email protected]
contact-url: https://farukgenc.com
app-name: Spring Boot Boilerplate Project
app-description: "Spring Boot Boilerplate is a starter kit. This project includes : Spring Boot(3.4.0), Spring Data JPA, Spring Validation, Spring Security + JWT Token, PostgreSQL, Mapstruct, Lombok, Swagger (Open API)"
app-version: 3.4.0
app-license-url: https://www.apache.org/licenses/LICENSE-2.0.html
app-license: Apache 2.0