Authentication basics with Ruby on Rails

In this episode, you'll see how to implement a simple email and password authentication system from scratch. We'll talk about how auth works, but in practice, you should use a gem like devise or another well tested, (ideally open source) tool for authentication. This is only to see how some of the pieces of authentication work.

To see how to install Devise, checkout this other video: https://youtu.be/zl6iJLlmUog.

Code for the episode: https://github.com/cjavdev/blog-demo
#rails #rubyonrails