blob: 85ffa70974ed9ebb9f7017331ba2643b6394e594 [file] [log] [blame]
Xia Kaixiangb5d872c2019-07-24 14:48:50 +08001spring.main.banner-mode=off
2# create and drop tables and sequences, loads import.sql
3spring.jpa.hibernate.ddl-auto=update
4spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
5spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
6spring.datasource.continue-on-error=true
7spring.datasource.initialization-mode=always
8# Postgresql settings
9spring.datasource.platform=postgresql
10spring.datasource.url=jdbc:postgresql://localhost:15432/payapi
11spring.datasource.username=admin
12spring.datasource.password=123456
13database.dbtype=postgresql
Xia Kaixiang35ff4332019-08-07 17:37:47 +080014
15logging.level.org.hibernate.SQL=ERROR
Xia Kaixiangb5d872c2019-07-24 14:48:50 +080016# Redis settings
17spring.redis.host=localhost
18spring.redis.port=16379
19spring.redis.password=kingstar
20# jwt settings
21jwt.secret=Zj5taLomEbrM0lk+NMQZbHfSxaDU1wekjT+kiC3YzDw=
22# timeout seconds
23jwt.expiration=3600
24# user password
25auth.password.bcrypt.seed=
26security.request.sign=false
27##################################################
28## quartz task scheduler
29shopbalance.updater.cron=-
Xia Kaixiang35ff4332019-08-07 17:37:47 +080030#download.ynrcc.chkfile.cron =3 0/2 * * * ?
31query.third.transdtl.result.cron=7 0/1 * * * ?
Xia Kaixiangb5d872c2019-07-24 14:48:50 +080032#############################################
33spring.cloud.consul.enabled=false
34spring.cloud.consul.host=172.28.201.70
35spring.cloud.consul.port=8500
Xia Kaixiang45bd5532019-08-05 08:42:52 +080036################# proxy ############################
37resttemplate.proxy.type=direct
38resttemplate.proxy.host=127.0.0.1
39resttemplate.proxy.port=8087