To Do List Turbo is a simple to do list application that allows you to create, edit, and delete tasks. It also allows you to mark tasks as complete and incomplete. This application uses the Hotwire Turbo framework.
- Clone this repository
- Install dependencies with
bundle install
- Run the migrations with
rails db:migrate
- Run the server with
./bin/dev
- Visit http://localhost:3000
- Ready to Use
After visit the application page, open your browser network tab and check the requests.
You will see that the application is using Turbo Streams to update the page. This is the main feature of the application.
Feel free to check the Tasks controller and the views to see how the application works.