1 Star 0 Fork 198

伊万 / Teamvision

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
GPL-2.0

TeamVision: 高效的软件项目管理,协作工具

Teamvision的项目管理包含了任务、提测、Bug管理,统计分析等功能。支持多成员协作,并且深度集成了持续集成(CI)。Teamvision 支持每日构建,自动化测试,一键部署等功能。 Teamvision通过任务流功能支持流水线构建发布,正真做到高效的软件过程管理与监控。 Demo展示地址:www.teamcat.cn

teamcat homepage

新版发布

最新版本0.0.4版本已经发布。全新安装可以体验。暂不支持从老版本升级。 0.0.4 更新功能如下:

  • 1 项目页面UI优化
  • 2 任务甘特图模式完整功能(增删改查)
  • 3 修复部分bug

0.0.3 更新功能如下:

  • 1 任务看板添加【过滤分析功能】
  • 2 任务增加【甘特图浏览模式】
  • 3 优化问题界面,在详情面板增加【移动端扫码传附件】功能
  • 4 优化提测,任务看板样式
  • 5 修复部分bug

Installation

之后我们提供的偶数版本为稳定版本,奇数版本为测试版本,请下载安装的同学注意。

Teamvision安装部署部分在distribute文件夹中,采用组件分步部署方式:

分步部署:

要求:CentOs7 python3.5

TeamVision组件依赖:

mongo,redis,nginx,mysql,python 在build_shell文件夹下面已提供各个组件的安装脚本,注:nginx与python3.5必须安装脚本安装,其他供参考。

python安装要求:

需py3.5版本,用ditribute/0.0.1/python/python.sh脚本安装。

mongo安装要求:

需3.4版本以上,不能添加密码,安装后能够启动成功,并且在安装teamcat的机器能够访问。

注:(因不同人在不同环境,包括执行目录等等因素,可能导致脚本中的相关路径有微弱差异,请自行修改,提供的安装脚本只是为大家方便,仅作参考)

redis安装要求:

需3.2版本以上,安装后能够启动成功,并且在安装teamcat的机器能够访问。

nginx安装要求:

需1.12.0版本以上,因涉及到nginx.conf文件配置,必须用ditribute/0.0.1/build_shell/nginx/nginx.sh脚本安装。

注:(因不同人在不同环境,包括执行目录等等因素,可能导致脚本中的相关路径有微弱差异,请自行修改,提供的安装脚本只是为大家方便,仅作参考)

mysql安装要求:

需5.6,5.7版本,安装后能能够启动成功,确保能够登录,并且在安装teamcat的机器能够访问。 将ditribute/0.0.1/build_shell/mysql 下面的team_vision.sql与privileges.sql导入到mysql。

注:(之前我们遇到很多同学是因ip限制,ip端口不通等因素无法连接数据库,导致登录报用户名不存在,项目不存在等等一些列问题,后续的同学请注意一下)

Teamvision 启动

首先在机器上创建/web/www 目录,将ditribute/0.0.1/build_shell下面的 teamvision与dist 拷贝到/web/www/下面。 打开/web/www/teamvision/teamvision/settings.py,修改配置文件。

将部署的机器地址添加到allow_host,如图所示 teamcat allowhost 将安装的mongo信息添加到mongo配置,如图所示 teamcat mongo 将安装的redis信息添加到redis配置,如图所示 teamcat redis 将安装的mysql信息添加到mysql配置,如图所示 teamcat mysql 将邮件服务器信息添加到email配置,如图所示 teamcat email 将webhost改成你部署后访问teamcat的地址,例如“http://www.teamcat.cn” teamcat email 将teamcat.sh脚本加上执行权限,root权限下执行 执行teamvision.sh

$ ./teamvision.sh

Quick Start

安装成功后,输入目标机器地址,端口8848,例如http://127.0.0.1:8848/ 访问teamvision

注:目前teamvision只支持chrome浏览器,初始登录账号:teamcat@teamcat.cn 密码:123456 用此账号登录后可自由添加账号。

项目

  1. 添加首个自己的项目 teamcat homepage
  2. 进入到项目就可以使用问题,提测,任务,统计,归档等功能。

CI:

CI部分功能使用需要部署Controller与Agent,Controller具有监听、调度、下发任务等功能,Agent负责在所需的不同机器上执行具体构建任务,简要架构如下: teamcat homepage

  1. 部署准备

    1.1. 首先进入CI-设置,添加一个Agent。添加完成后,记住AgentID,这个ID就是创建Agent成功以后列表行#号后面的数字。.这个ID需要在启动Agent的时候配置到agent.properties文件里。也就是修改agent.key. Agent创建窗口

  1. Redis服务器信息更新 在数据库中DicData表里找到309,310两行记录把IP地址和端口换成和前面Settings文件里一致
  2. Controller启动

将distribute/0.0.X/目录下将conroller的zip包拷贝到目标机器(要求JDK8)上解压缩。然后修改controller.properties文件。一共两个配置项:

  1. Agent启动

将distribute/0.0.X/目录下的agent.zip 复制到目标目录,解压缩。修改agent.propities文件。

  • agent.key= (这里填写前面的agentid)
  • server.host= http://10.69.58.195:8443/ (这里和前面controller配置文件里的INTERFACE_BASE_URL一致)启动名称 直接agent.sh 就可以。如果是windows系统用agent.bat脚本就行。
  1. CI构建邮件发送 我们可能在Settings文件里配置过一次邮件相关的东西了,但是CI相关邮件的发送还要再配置一次。(后续会尽快提供系统配置功能,统一配置)CI邮件相关的配置在数据库字典表里。请修改DicData表里:17,18,19,20行,相应的配置即可。如果要密码才能发送邮件,请参考前面controller.properties文件的配置。字典表的第26行可以配置默认的收件人,也就是无论项目成员有没有他都可以通过默认收件人配置收到邮件。

2.使用步骤: 添加一个CI任务,设置好任务配置及构建参数即可实现每日构建,自动化测试,一键部署等功能。具体来看一下怎么配置。 创建任务

  • 任务类型

           - 构建任务
           -  测试任务
           -  部署任务
           -  复制任务

创建任务相对简单,具体就不细说了。创建好任务后会看到下图。 任务界面 点击任务卡片右上角的配置图标进入任务配置页面,如下图 任务构成。包含以下几部分。

  • 基本配置:基本配置如果使用过jenkins应该都清除,这里主要说一下定时的规则。如果你写一个具体的时间例如12:23:34分这代表每天12点23分34秒执行。如果你写12:**:则代表每隔12小时执行一次。:08:**则是每隔8分钟执行一次。注意定时器是在你制定时间前后一定时间内执行,有一定时间差。
  • 构建前: 构建前操作请放到这个部分
  • SCM: 代码相关操作可以放到这个部分
  • 构建: 构建,部署等可以放到这个部分
  • 构建后: 构建后操作部分 *** 注意上面提到的构建前,SCM,构建,构建后都是逻辑概念,并不会硬性的区分成几个阶段,后续版本可能会考虑添加成强制概念*** 任务的执行过程是由具体的步骤构成的。可以在配置页面的右上角的步骤列表里找到适用的步骤插件。步骤插件可以添加多个,通过拖动插件来改变插件的执行顺序。插件包括 代码,构建,服务端测试,WebUI测试,Android,IOS构建插件,以及shell插件等。看下表可以知道目前提供的插件以及功能。
名称 功能 依赖
SVN SVN代码管理插件
GIT 代码管理插件
Shell 命令行 执行Shell命令或者批处理
命令行构建 命令行构建,并上传构建包
Gradle构建 Gradle构建插件
IOS构建 IOS构建插件
Ant构建 Ant构建插件
SSH文件替换 通过SSH替换文件
SSH部署 远程通过SSH部署
IOS命令行构建 命令行构建IOS包
Copy to Server 复制产物或其他包到服务器
接口测试 API接口测试插件 需要依赖GAT框架
XCode配置检查 对XCODE项目做项目配置检查
XCTest测试 已经过期
Selenium WebUI自动化插件 依赖GAT

上述提供的插件在配置完成后,如果暂时不用可以选择Disable,对于Disable的插件在执行过程中将不会被执行。

重点提示: 请在配置完插件后做点击保存。从不同的构建阶段切换时,如果不保存,配置将会丢失

重点提示: 请在配置完插件后做点击保存。从不同的构建阶段切换时,如果不保存,配置将会丢失

重点提示: 请在配置完插件后做点击保存。从不同的构建阶段切换时,如果不保存,配置将会丢失

以上就是如何配置一个简单的任务。接下来说一下CI默认提供的全局变量。大家可以在CI--设置进去就可以看到。

名称 用法 说明
WORKSPACE ${WORKSPACE} 代表当前任务在Agent上的工作目录
BUILDTOOL ${BUILDTOOL} Agent上的构建工具目录
BUILDVERSION ${BUILDVERSION} 代表当前任务的构建版本,根据构建次数自增
COMMONSPACE ${COMMONSPACE} 各构建任务可以共享的一个目录
BUILDBACKUPSPACE ${BUILDBACKUPSPACE} 根据构建版本自动创建的目录,不会随任务执行清除
TASKID ${TASKID} 构建任务ID
TASKNAME ${TASKNAME} 构建任务名称
HISTORYID ${HISTORYID} 构建任务记录ID,使用记录相关API获取上传package下载URL

全局变量可以用在步骤插件的任意位置使用

看完了全局变量,我们再来说一说Teamvision CI提供的另外一项功能 【构建参数】 点击任务卡片可以进入查看。如下图:

按照提示输入参数组的名称回车即可创建一个构建参数。构建参数包含三个部分。

  • 基本信息: 这部分展示参数局基本信息

  • 参数列表: 这里是用来定义Key-Value形式参数的地方

  • 插件列表: 这个部分可以通过参数化的方式定义任务的执行步骤是否执行 上图我们看到图的右半部分就是基本信息。除了像ID,名称,描述信息之外还有两个信息比较重要,下面做重点介绍。

  • 插件设置: 选中这个设置表示在任务执行过程中,将启用你在插件列表中对于执行步骤的状态定义(on/off)

  • 默认设置: 参数组是否作为默认参数组,在你执行任务时不选中任何参数组时使用。

有了以上的基本介绍,我们来看看参数列表的使用。如下图:

参数列表是以Key-Value形式存在。再使用的时候可以在配置任务时通过${key}的形式使用。例如要使用图上所示的值:${AndroidVersion}就可以了。 重点提示:创建完成参数组以后记得保存。

说完了参数列表,我们在来看看插件列表里有什么。先请看图:

如果你的插件列表里看不到插件或者插件看到的不一样,这是任务配置的时候使用的步骤插件不一样而已。 当我们看到这个列表,我们就可以通过右侧的开关来决定这个插件是否在执行过程中被启用。 重点提示: 如果你改变了插件的活动状态,请记得保存。

最后整体说一下参数组的功能: 参数组其实是把构建用到参数做了一个配置化的操作。把你经常使用的参数按照参数组的形式保存,下次使用时直接选用就可以。同时我们的构建过程有时候需要些特殊场景,例如有些构建产物需要执行单元测试,有些场景不需要。那我们就可以使用不同的参数组来定制,而不是创建两个任务。这时候我们构建参数的插件列表功能就派上用场了,你可以在不同的参数组里定制那些步骤插件会被执行。默认情况下,插件设置(前面在介绍基本信息的时候提到了)是不会打开的,也就是说任务执行时按照你在任务配置界面的配置来执行。只有你在构建参数基本信息页面打开了【插件设置】后,才会生效。

Q&A

Question:

如果我想部署的目标机器已经存在mongo,redis,nginx,mysql等基础组件,不想重新安装这些可以直接启动TeamCat服务吗?

Answer:

当然可以啦,但是首先目标机器需要创建/web/www/目录,并将distribute文件夹下的teamcat文件夹拷贝到此目录,打开teamcat/doraemon/settings.py文件,将其中的ALLOWED_HOSTS,MYSQLHOST,MONGOHOST,REDIS_HOST分别配置成已有环境的地址,并且EMAILCONFIG中的邮件服务器必须具有发邮件的权限才能正常发送构建通知邮件。如果不想创建此目录,需将settings.py文件中所有配置为/web/www/目录的地方改成teamcat实际所在目录的地址。

More

如果大家有更多的问题或改进想法,欢迎访问我们的demo地址www.teamcat.cn,通过里面的联系方式与我们多多沟通交流。

GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License.

简介

Teamvision的项目管理包含了任务、提测、Bug管理,统计分析等功能。支持多成员协作,并且深度集成了持续集成(CI)。Teamvision 支持每日构建,自动化测试,一键部署等功能。 Teamcat 通过任务流功能支持流水线构建发布,正真做到高效的软件过程管理与监控。 展开 收起
Python
GPL-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Python
1
https://gitee.com/yinqiuliang/Teamcat.git
git@gitee.com:yinqiuliang/Teamcat.git
yinqiuliang
Teamcat
Teamvision
master

搜索帮助

14c37bed 8189591 565d56ea 8189591