Implementing and using reoccurring tasks
Reoccurring tasks is a plugin developed for Redmine, which creates a new issue in Redmine for each recurrence, linking the duplicated issue as a related issue. For example, your company may be having some kind of contract with a customer, which requires some kind of periodic activities, or any other kind of the same tasks, which require to be executed on some reoccurring schedule pattern. Redmine with reoccurring tasks plugin will make sure that you or your company fulfills its duties, as defined by a schedule.
Getting ready
Server and Redmine administrator access is required.
How to do it…
At first, we are doing a standard Redmine plugin installation using the following steps:
Navigate to Redmine root from the console.
Get the plugin code:
git clone https://github.com/nutso/redmine-plugin-recurring-tasks.git plugins/recurring_tasks
Perform a database update:
bundle exec rake redmine:plugins:migrate RAILS_ENV=production
Restart Redmine, as follows:
rm tmp...