56 lines
1.7 KiB
Properties
56 lines
1.7 KiB
Properties
# Datasource
|
||
spring.datasource.url=jdbc:mysql://localhost:3306/xxxthegame?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC
|
||
spring.datasource.username=${DB_USER:xxx}
|
||
spring.datasource.password=${DB_PASSWORD:xxxthegame$123!}
|
||
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
||
|
||
# JPA / Hibernate
|
||
spring.jpa.hibernate.ddl-auto=update
|
||
spring.jpa.show-sql=false
|
||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect
|
||
spring.jpa.properties.hibernate.type.preferred_uuid_jdbc_type=VARCHAR
|
||
|
||
# Mail
|
||
#spring.mail.host=${MAIL_HOST:localhost}
|
||
#spring.mail.port=${MAIL_PORT:25}
|
||
#spring.mail.username=${MAIL_USER:}
|
||
#spring.mail.password=${MAIL_PASSWORD:}
|
||
#spring.mail.properties.mail.smtp.auth=false
|
||
#spring.mail.properties.mail.smtp.starttls.enable=false
|
||
|
||
# Mailpit
|
||
spring.mail.host=localhost
|
||
spring.mail.port=1025
|
||
spring.mail.username=
|
||
spring.mail.password=
|
||
spring.mail.properties.mail.smtp.auth=false
|
||
spring.mail.properties.mail.smtp.starttls.enable=false
|
||
|
||
# JWT Keystore
|
||
jwt.keystore.path=classpath:xxx.jks
|
||
jwt.keystore.password=${JWT_KEYSTORE_PASSWORD:XUR!Rv&f$j3UsqD&}
|
||
jwt.keystore.alias=xxx
|
||
|
||
# App
|
||
app.base-url=http://localhost:8080
|
||
|
||
# Theme – alle Farben hier ändern, Email-Style passt sich automatisch an
|
||
app.theme.color-bg=#1a1a2e
|
||
app.theme.color-card=#16213e
|
||
app.theme.color-primary=#e94560
|
||
app.theme.color-secondary=#0f3460
|
||
app.theme.color-text=#eeeeee
|
||
app.theme.color-muted=#888888
|
||
app.theme.color-success=#2ecc71
|
||
|
||
# Logging
|
||
logging.level.de.oaa.xxx=DEBUG
|
||
|
||
# Server
|
||
server.port=8080
|
||
server.servlet.context-path=/
|
||
|
||
# Multipart upload
|
||
spring.servlet.multipart.max-file-size=20MB
|
||
spring.servlet.multipart.max-request-size=20MB
|