Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jesalg/RADD
Rails Angular Devise Demo
https://github.com/jesalg/RADD
Last synced: 3 months ago
JSON representation
Rails Angular Devise Demo
- Host: GitHub
- URL: https://github.com/jesalg/RADD
- Owner: jesalg
- License: mit
- Created: 2013-08-07T23:16:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-02T02:32:42.000Z (over 10 years ago)
- Last Synced: 2024-05-14T03:03:59.643Z (6 months ago)
- Language: Ruby
- Homepage: http://radd.herokuapp.com/
- Size: 497 KB
- Stars: 124
- Watchers: 9
- Forks: 36
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#RADD [![Build Status](https://travis-ci.org/jesalg/RADD.png?branch=master)](https://travis-ci.org/jesalg/RADD)
A basic example of how to use Rails, Devise and Angular.js in conjunction.
This architecture treats Rails as a JSON API and AngularJS as the front-end framework which will do view rendering.
More details on my blog posts:
- [Authentication with Rails, Devise and AngularJS][1]
- [Architecting RESTful Rails 4 API][2]###Demo
http://radd.herokuapp.com/
###Install
``bundle install``
``bundle exec rake db:setup``
``rails s``
###Testing
Run this to execute the API test suite:
``rake db:test:prepare``
``rspec spec``
###Documentation
API documentation is located at `/docs` and is generated using passing acceptance tests.
Run this to regenerate the docs: `rake docs:generate`
[1]: http://jes.al/2013/08/authentication-with-rails-devise-and-angularjs/
[2]: http://jes.al/2013/10/architecting-restful-rails-4-api/