mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-08 22:58:01 -05:00
Restructuring the Repo to make it clear the difference between classic autogpt and the autogpt platform: * Move the "classic" projects `autogpt`, `forge`, `frontend`, and `benchmark` into a `classic` folder * Also rename `autogpt` to `original_autogpt` for absolute clarity * Rename `rnd/` to `autogpt_platform/` * `rnd/autogpt_builder` -> `autogpt_platform/frontend` * `rnd/autogpt_server` -> `autogpt_platform/backend` * Adjust any paths accordingly
76 lines
1.5 KiB
Markdown
76 lines
1.5 KiB
Markdown
# AutoGPT Agent Server Advanced set up
|
|
|
|
This guide walks you through a dockerized set up, with an external DB (postgres)
|
|
|
|
## Setup
|
|
|
|
We use the Poetry to manage the dependencies. To set up the project, follow these steps inside this directory:
|
|
|
|
0. Install Poetry
|
|
```sh
|
|
pip install poetry
|
|
```
|
|
|
|
1. Configure Poetry to use .venv in your project directory
|
|
```sh
|
|
poetry config virtualenvs.in-project true
|
|
```
|
|
|
|
2. Enter the poetry shell
|
|
|
|
```sh
|
|
poetry shell
|
|
```
|
|
|
|
3. Install dependencies
|
|
|
|
```sh
|
|
poetry install
|
|
```
|
|
|
|
4. Copy .env.example to .env
|
|
|
|
```sh
|
|
cp .env.example .env
|
|
```
|
|
|
|
5. Generate the Prisma client
|
|
|
|
```sh
|
|
poetry run prisma generate --schema postgres/schema.prisma
|
|
```
|
|
|
|
|
|
> In case Prisma generates the client for the global Python installation instead of the virtual environment, the current mitigation is to just uninstall the global Prisma package:
|
|
>
|
|
> ```sh
|
|
> pip uninstall prisma
|
|
> ```
|
|
>
|
|
> Then run the generation again. The path *should* look something like this:
|
|
> `<some path>/pypoetry/virtualenvs/backend-TQIRSwR6-py3.12/bin/prisma`
|
|
|
|
6. Run the postgres database from the /rnd folder
|
|
|
|
```sh
|
|
cd autogpt_platform/
|
|
docker compose up -d
|
|
```
|
|
|
|
7. Run the migrations (from the backend folder)
|
|
|
|
```sh
|
|
cd ../backend
|
|
prisma migrate dev --schema postgres/schema.prisma
|
|
```
|
|
|
|
## Running The Server
|
|
|
|
### Starting the server directly
|
|
|
|
Run the following command:
|
|
|
|
```sh
|
|
poetry run app
|
|
```
|