DEV Community

Discussion on: Is going for Devise for user authentication a good choice for a first Rails app or should I write it from scratch?

Collapse
 
epigene profile image
Augusts Bautra

Use Devise. Read the docs and use the core modules like secure password. This will expose you to deliberations and considerations made by experienced developers, especially in the domain of app security.

Rolling your own solution will train writing Ruby code and working with Rails, but that's about it.