Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update setup-yarn.md #2145

Merged
merged 3 commits into from
Mar 7, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions docs/setup-yarn.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,20 @@ Bot Framework Composer is designed to be a hosted web app. Currently, you need t
git clone https://github.com/microsoft/BotFramework-Composer.git
```

2. After cloning the repository, navigate to the **Bot Framework Composer** folder. Then run the following commands to navigate to the **Composer** folder and get all required packages:
2. After cloning the repository, navigate to the **Bot Framework Composer** folder.

```
cd BotFramework-Composer
```

3. Run the following commands to navigate to the **Composer** folder and get all required packages:

```
cd Composer
yarn
```

3. Next, run the following command to build the Composer application, this command can take several minutes to finish:
4. Next, run the following command to build the Composer application, this command can take several minutes to finish:

```
yarn build
Expand All @@ -34,13 +40,13 @@ Bot Framework Composer is designed to be a hosted web app. Currently, you need t
> [!NOTE]
> If you are having trouble installing or building Composer run `yarn tableflip`. This will remove all of the Composer application's dependencies (node_modules) and then it reinstalls and rebuilds all of its dependencies. Once completed, run `yarn install` and `yarn build` again. This process generally takes 5-10 minutes.

4. Again using Yarn, start the Composer authoring application and the bot runtime:
5. Again using Yarn, start the Composer authoring application and the bot runtime:

```
yarn startall
```

5. Once you see **Composer now running at:** appear in your terminal, you can run Composer in your browser using the address http://localhost:3000.
6. Once you see **Composer now running at:** appear in your terminal, you can run Composer in your browser using the address http://localhost:3000.

![browser address](./media/setup-yarn/address.png)

Expand Down