Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.01 KB

File metadata and controls

47 lines (30 loc) · 1.01 KB

Rails Starter App - CRUD

Rails Starter App is a boilerplate application developed with Rails 5.0.6 to keep you ahead in projects.

Basic Features

  • CREATE Create Posts
  • READ Read Posts
  • UPDATE Update Posts
  • DESTROY Delete Posts

Cloning The Repository:

Below are the setups to run Ruby on Rails application on your system.

Make sure Ruby is installed on your system. Fire command prompt and run bash:

#Make sure Ruby and Rails is installed
ruby -v
railv -v

#If you see Ruby and Rails version then you are good to start, other wise Setup Ruby On Rails

# Get the project
git clone https://github.com/samuel52/RailsApp.git

# Change directory
cd RailsApp

# Install bundle
bundle install

#Create db and migrate schema
rake db:create
rake db:migrate

$Run your application

rails s