diff --git a/docs/content/server/setup.md b/docs/content/server/setup.md index 1bec7e2800..db020bba6b 100644 --- a/docs/content/server/setup.md +++ b/docs/content/server/setup.md @@ -9,7 +9,7 @@ This guide will help you setup the server and builder for the project. -We also offer this in video format. You can check it out [here](https://github.com/Significant-Gravitas/AutoGPT#how-to-get-started) +We also offer this in video format. You can check it out [here](https://github.com/Significant-Gravitas/AutoGPT#how-to-get-started). !!! warning **DO NOT FOLLOW ANY OUTSIDE TUTORIALS AS THEY WILL LIKELY BE OUT OF DATE** diff --git a/rnd/autogpt_builder/README.md b/rnd/autogpt_builder/README.md index 5aa16c6781..1c61952b1b 100644 --- a/rnd/autogpt_builder/README.md +++ b/rnd/autogpt_builder/README.md @@ -2,7 +2,19 @@ This is the frontend for AutoGPT's next generation ## Getting Started -First, run the development server: +Run the following installation once. + +```bash +npm install +# or +yarn install +# or +pnpm install +# or +bun install +``` + +Next, run the development server: ```bash npm run dev @@ -18,8 +30,12 @@ Open [http://localhost:3000](http://localhost:3000) with your browser to see the You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. +For subsequent runs, you do not have to `npm install` again. Simply do `npm run dev`. + +If the project is updated via git, you will need to `npm install` after each update. + This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. ## Deploy -TODO \ No newline at end of file +TODO