The RCA monitoring system is an application that will enable the users to manage the RCAs. Users can view all RCAs filed and filter them out with help of tag feature.
We use ruby version '2.5.0'. You should install it in your systems in any way you feel comfortable. If you don't know how to do it, follow the steps below:-
>brew install rbenv
>rbenv init
>rbenv install 2.5.0
>rbenv global 2.5.0
>brew update
>brew install mongodb
>sudo mkdir -p /data/db
> # enter your password
>sudo chown -R `id -un` /data/db
> # enter your password
In a terminal window run mongod. This should start the Mongo server. To stop the Mongo server, hit Ctrl+C
gem install bundler
Now clone the repository on your local system
git clone https://source.golabs.io/lambda-school/RCA-Monitoring-System
After this open the cloned directory in your terminal and use bundler to install the dependencies
bundle install
Now type the following command in your terminal
bundle exec figaro install
After doing all the above steps, add the following line in /config/application.yml file
HOST_NAME: localhost
Finally, we are ready to use our app. Just type
rails s
in your terminal in the root directory of your project and we are ready to go. In your browser, type
localhost:3000
in your address bar and the app will start functioning.