This is an example application that implements a user regisration, authentication, and password retrieval user interface using Backbone.js, Ruby on Rails, and Devise.
The front end also takes advantage of a few additional Backbone support libraries which include:
A demo application can be found at http://backbonedevise.herokuapp.com
- Clone the repository
git clone git://github.com/jhuckabee/backbone_devise.git
-
Configure your database in config/database.yml. The current config assumes a custom local PostgreSQL configuration.
vi config/database.yml
-
Migrate the database
rake db:migrate
-
Start your webserver
rails server
Integration tests have been written using Capybara and Selenium
Run the tests using
rake test