- Run the command to generate a new Rails application called
todo_app
. - Create your database.
- Define a
Todo
model and create a corresponding migration. It should have two attributes:content
(string) andis_completed
(boolean). - Generate your schema.
- Create two Todo instances in your seed file. Run your seed file.
- Run your Rails server to see your application in the browser.
- Set up routes for
index
,show
andnew
. - Implement controller actions and views for the
index
,show
andnew
features.
Bonus
Implement create, destroy, edit and update features