This repository was archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.yaml
More file actions
44 lines (44 loc) · 1.33 KB
/
application.yaml
File metadata and controls
44 lines (44 loc) · 1.33 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
spring:
profiles:
active: development
---
spring:
profiles: development
http:
encoding:
charset: UTF-8
enabled: true
force: true
jpa:
database: mysql
hibernate:
ddl-auto: update
open-in-view: false
properties:
hibernate:
jdbc:
time_zone: UTC
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
session:
store-type: jdbc
datasource:
url: ${DATABASE_URL}
username: ${DATABASE_USER}
password: ${DATABASE_PWD}
---
manage:
authentication:
name: ${AUTHENTICATION_NAME:manage}
secret:
token: ${TOKEN_SECRET:secret}
password: ${PWD_SALT:salt}
wechat:
appId: ${WECHAT_APPID:appid}
secret: ${WECHAT_SECRET:secret}
dailyReportTemplateId: ${WECHAT_DAILY_REPORT_TEMPLATE_ID:id}
finishProcessTemplateId: ${FINISH_PROCESS_TEMPLATE_ID:id}
accessTokenURL: ${WECHAT_ACCESS_TOKEN_URL:https://api.weixin.qq.com/cgi-bin/token}
userAccessTokenURL: ${WECHAT_USER_ACCESS_TOKEN_URL:https://api.weixin.qq.com/sns/oauth2/access_token}
refreshAccessTokenURL: ${WECHAT_REFRESH_ACCESS_TOKEN_URL:https://api.weixin.qq.com/sns/oauth2/refresh_token}
userInfoURL: ${WECHAT_USER_INFO_URL:https://api.weixin.qq.com/sns/userinfo}
messageURL: ${WECHAT_MESSAGE_URL:https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=}