19 lines
477 B
YAML
19 lines
477 B
YAML
spring:
|
|
application:
|
|
name: equip-reserve-backend
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
username: your-username
|
|
password: your-password
|
|
url: jdbc:mysql://127.0.0.1:3306/equip_reserve?serverTimeZone=UTC
|
|
server:
|
|
port: 8080
|
|
jwt:
|
|
secret: your-secret
|
|
equip-reserve:
|
|
device-days: 7
|
|
allowed-origins: http://localhost:5173
|
|
mybatis-plus:
|
|
mapper-locations: classpath:mapper/*.xml
|
|
configuration:
|
|
map-underscore-to-camel-case: true |