feat: 应用商店增加禅道 (#94)
This commit is contained in:
parent
dbe8440933
commit
62fbc42fb2
|
|
@ -34,7 +34,7 @@ additionalProperties:
|
|||
- default: admin
|
||||
disabled: true
|
||||
envKey: DE_ADMIN
|
||||
labelEn: Admin Password
|
||||
labelEn: Admin User
|
||||
labelZh: 管理员
|
||||
required: true
|
||||
type: text
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ additionalProperties:
|
|||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 2
|
||||
website: https://typecho.org/
|
||||
github: https://github.com/typecho/typecho
|
||||
document: https://docs.typecho.org/doku.php
|
||||
|
|
|
|||
BIN
typecho/logo.png
BIN
typecho/logo.png
Binary file not shown.
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 11 KiB |
|
|
@ -12,7 +12,7 @@ services:
|
|||
- TYPECHO_DB_PORT=3306
|
||||
- TYPECHO_DB_USER=${PANEL_DB_USER}
|
||||
- TYPECHO_DB_PASSWORD=${PANEL_DB_USER_PASSWORD}
|
||||
- TYPECHO_USER_NAME=${TYPECHO_USER}
|
||||
- TYPECHO_USER_NAME=${TYPECHO_USER_NAME}
|
||||
- TYPECHO_USER_PASSWORD=${TYPECHO_USER_PASSWORD}
|
||||
- TYPECHO_USER_MAIL=${TYPECHO_USER_MAIL}
|
||||
- TYPECHO_SITE_URL=${TYPECHO_EXTERNAL_URL}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,24 @@
|
|||
additionalProperties:
|
||||
formFields:
|
||||
- default: zentao
|
||||
envKey: ZENTAO_MYSQL_PASSWORD
|
||||
labelEn: Password
|
||||
labelZh: 数据库Root用户密码
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
- default: 3307
|
||||
envKey: ZENTAO_MYSQL_PORT
|
||||
labelEn: Port
|
||||
labelZh: 数据库端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 8080
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 应用端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
version: '3.0'
|
||||
services:
|
||||
zentao:
|
||||
image: easysoft/zentao:18.2
|
||||
container_name: ${CONTAINER_NAME}
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:80
|
||||
- ${ZENTAO_MYSQL_PORT}:3306
|
||||
volumes:
|
||||
- ./data/data:/www/zentaopms
|
||||
- ./data/mysql:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=${ZENTAO_MYSQL_PASSWORD}
|
||||
networks:
|
||||
- 1panel-network
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
# 禅道 - 敏捷项目管理软件
|
||||
|
||||

|
||||
|
||||
禅道是一款功能强大、全面的敏捷项目管理软件,旨在帮助团队规划、跟踪和交付高质量的软件产品。它将项目管理、产品管理、质量管理和文档管理功能融合于一个集成平台中。
|
||||
|
||||
## 特点
|
||||
|
||||
- **敏捷项目管理:**禅道遵循敏捷原则,支持Scrum和看板方法论,使团队能够轻松管理和跟踪项目进度、待办事项、迭代和任务。
|
||||
- **产品管理:**禅道为产品经理提供工具,可创建产品路线图、管理需求并优先处理功能,确保与客户需求和业务目标的一致性。
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
name: 禅道
|
||||
tags:
|
||||
- 工具
|
||||
title: 国产的开源项目管理软件
|
||||
type: 工具
|
||||
description: 国产的开源项目管理软件
|
||||
additionalProperties:
|
||||
key: zentao
|
||||
name: 禅道
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 国产的开源项目管理软件
|
||||
shortDescEn: Domestic open source project management software
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://www.zentao.net/index.html
|
||||
github: https://github.com/easysoft/zentaopms
|
||||
document: https://www.zentao.net/book/zentaopms/38.html
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
Loading…
Reference in New Issue