Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor: 文档支持中英文切换 #1223

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: 蓝鲸智云
category: 办公应用
introduction: 流程服务是蓝鲸推出的轻量级ITSM,通过可自定义设计的流程模块,覆盖IT服务中的不同管理活动或应用场景。帮助企业用户规范内部管理流程,提升沟通及管理效率。
introduction_en: bk_itsm is a lightweight ITSM created by Blueking. It covers different application scenarios in IT services through customizable workflows and help enterprise users to implement standardize IT workflow, improve communication and management efficiency.
version: 2.6.8-alpha.3
version: 2.6.8-alpha.4
language: python
is_use_celery: True
is_use_celery_with_gevent: False
Expand Down
2 changes: 1 addition & 1 deletion app_desc.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
spec_version: 2
app_version: "2.6.8-alpha.3"
app_version: "2.6.8-alpha.4"
app:
region: default
bk_app_code: bk_itsm
Expand Down
7 changes: 5 additions & 2 deletions config/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -864,9 +864,12 @@ def my_before_proxy_func(request, json_data, request_headers):
APIGW_PUBLIC_KEY = base64.b64decode(api_public_key)

# show.py 敏感信息处理, 内部白皮书地址,内部登陆地址
BK_DOC_URL = os.environ.get(
"BK_DOC_URL", "https://bk.tencent.com/docs/markdown/流程服务/产品白皮书/产品简介/README.md"
BK_DOC_CENTER_HOST = os.getenv(
"BK_DOC_CENTER_HOST",
os.getenv("BK_DOCS_URL_PREFIX", "{}o/bk_docs_center".format(BK_PAAS_HOST)),
)
BK_DOC_URL = "{}{}".format(BK_DOC_CENTER_HOST, "markdown/流程服务/产品白皮书/产品简介/README.md")

BK_IEOD_LOGIN_URL = os.environ.get("BK_IEOD_LOGIN_URL", "")

# itsm-tapd 网关API地址
Expand Down