Merge pull request #11899 from dataease/pr@dev-v2_config_app

chore: 增加安装配置项
This commit is contained in:
fit2cloudrd 2024-09-02 14:19:03 +08:00 committed by GitHub
commit 0a67c0df67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 0 deletions

View File

@ -1,6 +1,8 @@
server:
tomcat:
connection-timeout: 70000
servlet:
context-path: ${DE_CONTEXT_PATH}
spring:
servlet:
multipart:
@ -14,6 +16,12 @@ dataease:
apisix-api:
domain: http://apisix:9180
key: DE_APISIX_KEY
export:
views:
limit: ${DE_EXPORT_VIEWS_LIMIT}
dataset:
limit: ${DE_EXPORT_DATASET_LIMIT}
origin-list: ${DE_ORIGIN_LIST}
task:
executor:
address: http://sync-task-actuator:9001

View File

@ -7,6 +7,8 @@ DE_PORT=8100
DE_LOGIN_TIMEOUT=480
## 安装模式
DE_INSTALL_MODE=community
## 动态路径
DE_CONTEXT_PATH=/
# 数据库配置
## 是否使用外部数据库
@ -35,3 +37,8 @@ DE_SELENIUM_MEM_LIMIT=2g
DE_APISIX_DASHBOARD_PORT=9000
## APISIX 端口
DE_APISIX_PORT=9080
# 其他配置
DE_EXPORT_VIEWS_LIMIT=100000
DE_EXPORT_DATASET_LIMIT=100000
DE_ORIGIN_LIST="http://localhost:8000"