Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 553 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 553 Bytes

Rails RESTful App

Try here!

Discription

A simle example app to demonstrate REST API and MVC in the same app. For MVC it lets you create your account and manages logins through session. It also shows how to use token authentication in API calls.

Getting started

git clone https://github.com/pyx26266/RESTful-rails-app.git
cd RESTful-rails-app

Running the app

bundle install --without production test
rails db:migrate
rails db:seed
rails server

now visit http://localhost:3000