Redmine plug-in Installation
1. Code Review
You can review the Code submitted by developers online and manage the finger picking project. This is the most helpful plug-in for me currently.
2. Advanced Roadmap
The roadmap view function is enhanced to display the detailed number of jobs and tasks for each specific version or milestone.
3. ezfaq
Add FAQ management skills for redmine.
4. Charts
Added the chart function for redmine.
5. Graph
Added the chart function for redmine, which can be used with charts.
6. Kanban
Added a whiteboard view for redmine to facilitate management of issue.
7. worktime
Powerful work count management plug-in.
8. wiki extensions plugin
Provides many Extended Skills for writing a wiki.
9. Time Tracker
A pair of time start/stop buttons are provided to facilitate precise statistics on the number of workers.
10. Close issue button
Added a close button for the issue view to close the issue easily.
For General Plug-in installation methods, refer to redmine wiki.
Installing a plugin
1. Copy your plugin Directory#{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 shoshould now be able to see the plugin list inAdministration-> pluginsAnd 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