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
Install Redmine on Disco Dingo Ubuntu 19.10 With Solved Build Errors howto by Someshwar Mirge - March 16, 2020March 16, 20201 This step by step tutorial guides you through the detail process of installing Redmine 4.1.0 on Ubuntu 19.10. During installation there are few build errors related to nokogiri and mysql2, this post describes how to install redmine on Disco Dingo Ubuntu 19.10 with solved build errors. To get working Redmine 4.1.0 we need to follow following steps (total 8 steps) : Step 1 :Install redmine on Disco Dingo Ubuntu 19.10 First step is to check and install apache server. Open your terminal by pressing Alt+Ctrl +T and enter following command to install Apache2 server sudo apt install apache2 libapache2-mod-passenger after execution of above command , visit http://localhost/ on your browser to check proper installation
REDMINE 4.1 PLUGIN Development Steps howto by Someshwar Mirge - March 11, 2020August 15, 20200 Here is information on redmine plugin development steps. I . Creating a new Plugin STEP 1: For creating plugin , we need to first set RAILS_ENV variable as follows: on window , just go to plugin directory i.e. C:\Bitnami\redmine-4.1.0-0\apps\redmine\htdocs\plugins , open CMD and enter following command set RAILS_ENV=production Note: In LINUX environment , command will be export RAILS_ENV="production" STEP 2: Creating PLUGIN using ' Redmine Plugin Generator ' For generating a plugin using redmine plugin generator , first cd to your redmine directory Command Syntax for creating a plugin will be bundle exec ruby bin/rails generate redmine_plugin <plugin_name> i.e. in case of leave management system , command will be bundle exec ruby bin/rails generate redmine_plugin leave_man_sys Note: we can