Added instructions to launch frontend server when running from source (#3517)

When running the AutoGen Studio from source, one needs to separately launch the frontend server. Updated the docs to include these instructions.

Co-authored-by: Victor Dibia <victordibia@microsoft.com>
This commit is contained in:
Sahil 2024-09-27 16:27:26 -07:00 committed by GitHub
parent 766a4a13c0
commit dbb139d795
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 0 deletions

View File

@ -87,6 +87,21 @@ AutoGen Studio also takes several parameters to customize the application:
Now that you have AutoGen Studio installed and running, you are ready to explore its capabilities, including defining and modifying agent workflows, interacting with agents and sessions, and expanding agent skills.
#### If running from source
When running from source, you need to separately bring up the frontend server.
1. Open a separate terminal and change directory to the frontend
```bash
cd frontend
```
3. Create a `.env.development` file.
```bash
cp .env.default .env.development
```
3. Launch frontend server
```bash
npm run start
```
## Contribution Guide
We welcome contributions to AutoGen Studio. We recommend the following general steps to contribute to the project: