forked from constanxe/portnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.properties
32 lines (27 loc) · 1.02 KB
/
application.properties
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
# Server authentication credentials
# API header:
# - Key: authorization
# - Value: Basic ZzF0OTo5OTkwMDA=
spring.security.user.name=g1t9
spring.security.user.password=999000
# Database credentials
spring.datasource.username=root
spring.datasource.password=
# Database settings
spring.datasource.url=jdbc:mysql://localhost:3306/vsta?serverTimezone=GMT
spring.jpa.show-sql=false
spring.jpa.hibernate.ddl-auto=none
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
# Spring mail properties
# Configure the other settings (host, username, password) in reload.properties
spring.mail.properties.mail.smtp.auth=false
spring.mail.properties.mail.smtp.starttls.enable=true
spring.mail.default-encoding=UTF-8
spring.mail.port=587
spring.mail.protocol=smtp
spring.mail.debug=true
# QuartzProperties
spring.quartz.job-store-type=memory
spring.quartz.overwrite-existing-jobs=true
threads.threadPoolSize=10