Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 894 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 894 Bytes

Starter project - API

A Rails 5 API demo/starter project, linked an Ember and Semantic UI front-end.

The client project side can be found here.

Command history

rails new starter-api --api
  
# Devise
rails generate devise:install
rails generate devise user
rails db:migrate # uncomment appropriate options in user.rb before running this
rails g migration AddAuthenticationTokenToUser authentication_token:string
rails db:migrate

Run in development with Ember frontend

rails server --binding 0.0.0.0

Resources and useful links