You should check to make sure that your system has the proper prerequisites installed. These include:
- Ruby
- SQLite3
- Node.js
- Yarn
- To install Rails, use the gem install command provided by RubyGems:
$ gem install rails
To verify that you have everything installed correctly, you should be able to run the following:
$ rails --version
- Clone the git repository using
git clone [http]
command. - Install all dependencies:
bundle install
- Create db and migrate schema using commands
rake db:create
andrake db:migrate
- Now run the application
rails s