Getting Started with AutoGPT: Self-Hosting Guide¶
This tutorial will walk you through the process of setting up AutoGPT locally on your machine.
Introduction¶
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.
Warning
DO NOT FOLLOW ANY OUTSIDE TUTORIALS AS THEY WILL LIKELY BE OUT OF DATE
Prerequisites¶
To setup the server, you need to have the following installed:
Checking if you have Node.js & NPM installed¶
We use Node.js to run our frontend application.
If you need assistance installing Node.js: https://nodejs.org/en/download/
NPM is included with Node.js, but if you need assistance installing NPM: https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
You can check if you have Node.js & NPM installed by running the following command:
node -v
npm -v
Once you have Node.js installed, you can proceed to the next step.
Checking if you have Docker & Docker Compose installed¶
Docker containerizes applications, while Docker Compose orchestrates multi-container Docker applications.
If you need assistance installing docker: https://docs.docker.com/desktop/
Docker-compose is included in Docker Desktop, but if you need assistance installing docker compose: https://docs.docker.com/compose/install/
You can check if you have Docker installed by running the following command:
docker -v
docker-compose -v
Once you have Docker and Docker Compose installed, you can proceed to the next step.
Cloning the Repository¶
The first step is cloning the AutoGPT repository to your computer. To do this, open a terminal window in a folder on your computer and run:
git clone https://github.com/Significant-Gravitas/AutoGPT.git
Once that's complete you can close this terminal window.
Running the backend services¶
To run the backend services, follow these steps:
-
Within the repository, clone the submodules and navigate to the
autogpt_platform
directory:This command will initialize and update the submodules in the repository. Thegit submodule update --init --recursive cd autogpt_platform
supabase
folder will be cloned to the root directory. -
Copy the
.env.example
file available in thesupabase/docker
directory to.env
inautogpt_platform
:This command will copy thecp supabase/docker/.env.example .env
.env.example
file to.env
in thesupabase/docker
directory. You can modify the.env
file to add your own environment variables. -
Run the backend services:
This command will start all the necessary backend services defined in thedocker compose up -d
docker-compose.combined.yml
file in detached mode.
Running the frontend application¶
To run the frontend application, follow these steps:
-
Navigate to
frontend
folder within theautogpt_platform
directory:cd frontend
-
Copy the
.env.example
file available in thefrontend
directory to.env
in the same directory:You can modify thecp .env.example .env
.env
within this folder to add your own environment variables for the frontend application. -
Run the following command:
This command will install the necessary dependencies and start the frontend application in development mode.npm install npm run dev
Checking if the application is running¶
You can check if the server is running by visiting http://localhost:3000 in your browser.
Notes:
By default the application for different services run on the following ports:
Frontend UI Server: 3000 Backend Websocket Server: 8001 Execution API Rest Server: 8006