How to add an external CSS stylesheet to your ROR application Uncategorized by Komal Swami - August 31, 2020August 13, 20210 I assume that you already have your css and html.erb files. Hello folks, when you make your first app using ruby on rails then you want it to look good especially when you know how the magic of css works and then end up using html tags for css stylesheet. but it dont work at all. when i was getting started with ruby on rails it was a big deal for me to find a way to add custom css to my UI so here are two simple steps and tadda your css start working. 1.You need to put all your css files in assets ->stylesheets and use <%= stylesheet_link_tag %> Thank you.
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
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
Bitnami Redmine Installation On Windows howto by Someshwar Mirge - February 4, 2020August 27, 20200 In this post we will explain details steps on how to install redmine on windows operating system. We will also explain steps on how to install new plugin and test it. We are using redmine 4.1 and windows 10 for this exercise. As you know redmine is one of the popular web based project management tool, where all the trackers can be customized to meet your organization process flows. This is our attempt to help online community to promote use of redmine for better project management and tracking. STEP 1 : Download & Install Redmine On Windows a) Visit to Bitnami redmine site and download the binary installer for windows 10, STEP 2: Configure BITNAMI REDMINE Launch