Skip to content

onemonth/install_rails

Repository files navigation

Install Rails

Build Status

Patches welcome.

Setup in your local

  1. After following the instructions on the site, run

    rvm install 2.7.6
  2. If you don't already have MongoDB, then run:

    brew update
    brew install mongodb
  3. Enter into the project folder with:

    cd install_rails
  4. Install its dependencies, run:

    gem install bundler
    bundle install
  5. You're good to go, set it live by running:

    rails server
  6. Open http://localhost:3000 in your browser.

Contributing

  1. Fork it
  2. Clone to your local (git clone git@github.com:onemonth/install_rails.git)
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request