Logo
Docs
Tutorial: AI Todo App

Step 1: Checkout the repo

Checkout the repository

We'll begin by checking out the base code of the todo list app. We'll start from the base-start-here branch.

git clone -b base-start-here https://github.com/CopilotKit/example-todos-app.git
cd example-todos-app

Install dependencies

To install the dependencies, run the following:

npm install

Start the project

Now, you are ready to start the project by running:

npm run dev

You should be able to go to http://localhost:3000 and see the todo list app. Feel free to play around with the app to get a feel for it.

Next, let's start adding some AI copilot superpowers to this app.

On this page

Edit on GitHub