Redmine 插件安装

来源:互联网 发布:淘宝省钱网站 编辑:程序博客网 时间:2024/05/17 09:18

Redmine 插件安装

1. Code Review

   可对开发人员提交的代码进行在线review, 对指摘项目进行管理, 是目前对我帮助最大的插件。

2. Advanced Roadmap

   对roadmap view进行了功能强化,可显示每个具体version或者milestone的详细工数和任务。

3. ezFAQ

   为redmine增加FAQ管理技能。

4. Charts

   为redmine增加了图表功能。

5. Graph

   为redmine增加了图表功能, 和Charts可以一起使用。

6. Kanban

   为redmine增加了一个白板view, 方便管理者对issue进行管理。

7. WorkTime

   强大的工数管理插件。

8. Wiki Extensions Plugin

   为撰写wiki提供了许多扩展技能。

9. Time Tracker

   提供一对time start/stop按钮,方便对工数进行精确统计。

10. Close Issue Button

   为issue view增加了一个close按钮, 方便关闭issue。

一般的插件安装方法,需参照redmine wiki即可



Installing a plugin

1. Copy your plugin directory into #{RAILS_ROOT}/plugins (Redmine 2.x) or#{RAILS_ROOT}/vendor/plugins (Redmine 1.x). If you are downloading the plugin directly from GitHub, you can do so by changing into your plugin directory and issuing a command likegit clone git://github.com/user_name/name_of_the_plugin.git.

2. If the plugin requires a migration, run the following command to upgrade your database (make a db backup before).

2.1. For Redmine 1.x:

rake db:migrate_plugins RAILS_ENV=production

2.2. For Redmine 2.x:

rake redmine:plugins:migrate RAILS_ENV=production

3. Restart Redmine

You should now be able to see the plugin list in Administration -> Plugins and configure the newly installed plugin (if the plugin requires to be configured).

Uninstalling a plugin

1. If the plugin required a migration, run the following command to downgrade your database (make a db backup before):

1.1. For Redmine 1.x:

rake db:migrate:plugin NAME=plugin_name VERSION=0 RAILS_ENV=production

1.2. For Redmine 2.x:

rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production

2. Remove your plugin from the plugins folder: #{RAILS_ROOT}/plugins (Redmine 2.x) or#{RAILS_ROOT}/vendor/plugins (Redmine 1.x)..

3. Restart Redmine

1 0
原创粉丝点击