From dbb139d795f62870bdbcb2e15a49c14143697e6a Mon Sep 17 00:00:00 2001 From: Sahil Date: Fri, 27 Sep 2024 16:27:26 -0700 Subject: [PATCH] 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 --- samples/apps/autogen-studio/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/samples/apps/autogen-studio/README.md b/samples/apps/autogen-studio/README.md index 05a2a58f80..6aa86ce511 100644 --- a/samples/apps/autogen-studio/README.md +++ b/samples/apps/autogen-studio/README.md @@ -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: