mirror of https://github.com/fantasticit/think.git
43 lines
736 B
YAML
43 lines
736 B
YAML
# 开发环境配置
|
|
server:
|
|
prefix: '/api'
|
|
port: 5001
|
|
collaborationPort: 5003
|
|
# 最大版本记录数
|
|
maxDocumentVersion: 20
|
|
|
|
client:
|
|
assetPrefix: '/'
|
|
apiUrl: 'http://localhost:5001/api'
|
|
collaborationUrl: 'ws://localhost:5003'
|
|
|
|
# 数据库配置
|
|
db:
|
|
mysql:
|
|
host: '127.0.0.1'
|
|
username: 'root'
|
|
password: 'root'
|
|
database: 'think'
|
|
port: 3306
|
|
charset: 'utf8mb4'
|
|
timezone: '+08:00'
|
|
synchronize: true
|
|
redis:
|
|
host: '127.0.0.1'
|
|
port: '6379'
|
|
password: 'root'
|
|
|
|
# oss 文件存储服务
|
|
oss:
|
|
aliyun:
|
|
accessKeyId: ''
|
|
accessKeySecret: ''
|
|
bucket: ''
|
|
https: true
|
|
region: ''
|
|
|
|
# jwt 配置
|
|
jwt:
|
|
secretkey: 'zA_Think+KNOWLEDGE+WIKI+DOCUMENTS@2022'
|
|
expiresIn: '6h'
|