askme

A Ruby on Rails question and answer application

Stars
3
Committers
3

askme

A Ruby on Rails application where users create profiles and can send each other questions.

Demo

askmeq.herokuapp.com

Versions used

  • ruby '2.6.3'
  • rails '6.0.2.1'

Installation

  1. Download the repository using the instruction.
  2. In the command line go to the directory with the files downloaded.
  3. Install required gems. To do that:
  • Check if the bundler is installed with the command gem list bundler.
    • If it is not installed - installed it with the command gem install bundler.
    • If bundler is already installed, that is perfect. Go to the next step.
  • In the directory with the app, to install all necessary gems run bundle install --without production.
  1. Install all the dependencies listed within package.json in the local node_modules folder:
yarn install
  1. To run migrations:
bundle exec rails db:migrate