標籤:http 使用 os io for art cti 代碼
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 like git 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