Redmine Database Migration DB by Someshwar Mirge - June 22, 2021June 27, 20210 Often times it happens that we need to migrate from one Redmine installation to another Redmine. Specially when upgrading to latest version. But we want to keep our database intact and want to migrate all the data to new setup. There are lot of guides on internet about redmine database migration, this blog post talks about traditional datbase migration along with case where projects in redmine instance needs to be merged with projects running in production environment. Step 1: BACKUP the existing database First of all take a backup of existing database.Backup is necessary in both cases .Whether we are installing new redmine on same system or if it is on new system . Use following command to create a
Agile Scrum With Product Backlog Active Redmine Plugin Plugins by Someshwar Mirge - May 29, 2021May 29, 20210 There are lot of plugins available in github and redmine.org for executing your project using Agile Scrum methodology. Most of the plugins are not supported for redmine version 4.1.x or above. The supported plugins for latest redmine version are paid. There is scrum plugin with available which you can download and test it. It has all the advanced features for sprint and product backlog. While it does not have features like drag and drop sprint tasks from one state to other state. These features are available in paid version of redmineup agile plugin. Also this drag and drop of tasks is available in teamwork. Lets start with installation of scrum plugin, which has sprint view and product backlog view.
Develop Hello World! Plugin With Redmine howto by Someshwar Mirge - May 6, 2020August 15, 20200 In this article , we are going to develop Hello World ! plugin with Redmine. For this tutorial , we have used Ubuntu 20.04 LTS as a base and Redmine 4.1.1 also Ruby version is 2.7 . Note : Before getting started we assume that you have a working Redmine installation. Step 1: Develop Hello World! plugin with redmine plugin generator open terminal and change your current directory to your redmine installation directory i.e. /usr/share/redmine-4.1.1. Use following command, cd /usr/share/redmine-4.1.1/ Now , here we will create plugin using redmine plugin generator script, use following command to generate plugin . export RAILS_ENV="production" above command will set rails environment variable to production and now generator script. bundle exec ruby bin/rails
Develop Your Own Redmine Plugin howto by Someshwar Mirge - March 24, 2020August 15, 20200 So you want to develop your own redmine plugin then your search ends here. Internet does have all the information but few steps and methods are for old version of redmine and those steps may not work with redmine 4.0 or later version. This will be our opening post and more posts to be followed as we may not able to cover all the steps in one post. First of all , we need to have a working redmine framework, please follow the steps on how to install current redmine version on latest Ubuntu. Once you are success installing redmine, login to your server, navigate to plugins sub directory in redmine directory. In plugin directory, we are going to