diff --git a/docs/01-quick-start.md b/docs/01-quick-start.md index ead82519f..0602c74a4 100644 --- a/docs/01-quick-start.md +++ b/docs/01-quick-start.md @@ -2,9 +2,9 @@ The chatbot template is a web application built using [Next.js](https://nextjs.org) and the [AI SDK](https://sdk.vercel.ai) that can be used as a starting point for building your own AI applications. The template is designed to be easily customizable and extendable, allowing you to add new features and integrations as needed. -Deploying to [Vercel](https://vercel.com) is the quickest way to get started with the chatbot template, as it automatically sets up the project by connecting to integrations and deploys it to the cloud. You can then later develop the project locally and push changes to the Vercel project. +Deploying to [Vercel](https://vercel.com) is the quickest way to get started with the chatbot template, as it automatically sets up the project by connecting to integrations and deploys it to the cloud. You can then develop the project locally and push changes to the Vercel project. -### Pre-requisites: +### Prerequisites: - Vercel account and [Vercel CLI](https://vercel.com/docs/cli) - GitHub/GitLab/Bitbucket account @@ -31,7 +31,13 @@ vercel link vercel env pull ``` -After linking the project, you can start the development server by running: +After linking the project, you need to apply database migrations if you haven't done so already. + +```bash +pnpm db:migrate +``` + +Now you can start the development server by running: ```bash pnpm dev