| spring.main.banner-mode=off |
| # create and drop tables and sequences, loads import.sql |
| spring.jpa.hibernate.ddl-auto=none |
| spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect |
| spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false |
| #spring.datasource.continue-on-error=true |
| #spring.datasource.initialization-mode=always |
| # Postgresql settings |
| spring.datasource.platform=postgresql |
| spring.datasource.url=jdbc:postgresql://localhost:15432/restaurant |
| spring.datasource.username=admin |
| spring.datasource.password=123456 |
| database.dbtype=postgresql |
| |
| # Redis settings |
| spring.redis.host=localhost |
| spring.redis.port=16379 |
| spring.redis.password=kingstar |
| spring.redis.database=4 |
| |
| # jwt settings |
| jwt.secret=Zj5taLomEbrM0lk+NMQZbHfSxaDU1wekjT+kiC3YzDw= |
| jwt.expiration=3600 |
| |
| # user password |
| auth.password.bcrypt.seed= |
| spring.jackson.serialization.fail-on-empty-beans=false |
| |
| # task setting |
| # 对账任务 |
| restaurant.chkdtltask.cron=- |
| # 统计任务 |
| restaurant.statement.cron=- |
| # 客户信息校对任务 |
| restaurant.customercheck.cron=- |
| # 流水入账任务 |
| restaurant.submitofflinedtl.cron=- |
| # 查询流水状态任务 |
| restaurant.querydtlresult.cron=- |
| |
| # payapi setting |
| payapi.url=http://172.28.201.70:10010/payapi |
| payapi.appid=300091 |
| payapi.appkey=1ec857ac2c7749a4af092cd422e57861 |
| |
| # multi-tenant setting |
| multi-tenant.head.key=X-TENANT-ID |
| |