Rails Starter App is a boilerplate application developed with Rails 5.0.6 to keep you ahead in projects.
- CREATE Create Posts
- READ Read Posts
- UPDATE Update Posts
- DESTROY Delete Posts
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