I have a User model created already. I am wondering how should I configure devise with my existing User model. That being said, do I need to setup any additional routes or m
Just add devise_for :user in your routes
devise_for :user
Add attr_accessible :password, :password_confirmation
attr_accessible :password, :password_confirmation
and for more info take a look at a typical devise model
https://github.com/johndel/Rails-Simple-CMS/blob/master/app/models/admin.rb
(Pretty simple)