
Member-only story
How to Build a Blog with Ruby on Rails
Based on Udemy The Complete Ruby on Rails Developer Course
Want to learn how to build a blog with Ruby on Rails? You’ve come to the right place. My goal with this tutorial was to be as accessible as possible to anyone beginning the Ruby on Rails learning journey, and so if you have any questions or suggestions, please don’t hesitate to let me know in the comments! With all that being said, please dive in and enjoy the learning process.
This tutorial is based on Udemy’s The Complete Ruby on rails Developer Course. I highly recommend it. Pro tip: Udemy frequently gives extreme discounts on their courses. If this course costs more than $10–15, Google a discount code before you buy it.
p.s. just an idea: if you get some value out of this article, and you’d like to support the author, purchase your next Amazon shipment through my affiliate link here. Cheers!
Table of Contents
- Create a new Ruby on Rails App
- Create a Pages Controller
- Create a Pages View
- Create a Route to the Index Page
- Create an About Page, Update Routes and Create Links to Pages
- Build Articles Model and Controller
- Inside the Rails Console
- Add Validations to Enforce Constraints on Articles
- Add Ability to Create Articles From Browser
- Editing Articles
- Add Index Listing of Articles and Add Edit/Show Links
- Refactor Forms into a Single Partial
- Add the Destroy Action
- Refactor Articles Controller
- Install Bootstrap
- Install Navigation Bar
- Add Links to the Navbar
- Style the Form Template
- Style the Messages
- Style the Show Article Page
- Update Article Instance Variables To Work For Users
- Style Article Listing Index Page
- Creating Users + (Create a Feature Branch in Github)
- Add User Validations +…