mirror of https://github.com/microsoft/autogen.git
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:
parent
766a4a13c0
commit
dbb139d795
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue