Skip to content

Commit c27aeee

Browse files
committed
Deleted the include file. It was only used by the JS tutorial.
1 parent 08b1fa1 commit c27aeee

File tree

2 files changed

+20
-31
lines changed

2 files changed

+20
-31
lines changed

articles/search/includes/tutorial-add-search-website-fork-and-clone.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

articles/search/tutorial-javascript-overview.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,29 @@ Install the following software in your local development environment.
5757

5858
Forking the sample repository is critical to be able to deploy the Static Web App. The static web app determines the build actions and deployment content based on your own GitHub fork location. Code execution in the Static Web App is remote, with the static web app reading from the code in your forked sample.
5959

60-
- You must have a GitHub account.
60+
1. On GitHub, [fork the sample repository](https://github.com/Azure-Samples/azure-search-javascript-samples/fork).
6161

62-
- On GitHub, [fork the sample repository](https://github.com/Azure-Samples/azure-search-javascript-samples/fork).
62+
Complete the fork process in your web browser with your GitHub account. This tutorial uses your fork as part of the deployment to an Azure Static Web App.
6363

64-
This tutorial uses your fork as part of the deployment to an Azure Static Web App.
64+
1. At a bash terminal, download your forked sample application to your local computer.
6565

66-
[!INCLUDE [tutorial-fork-and-clone](includes/tutorial-add-search-website-fork-and-clone.md)]
66+
Replace `YOUR-GITHUB-ALIAS` with your GitHub alias.
67+
68+
```bash
69+
git clone https://github.com/YOUR-GITHUB-ALIAS/azure-search-javascript-samples
70+
```
71+
72+
1. At the same bash terminal, go into your forked repository for this website search example:
73+
74+
```bash
75+
cd azure-search-javascript-samples
76+
```
77+
78+
1. Use the Visual Studio Code command, `code .` to open your forked repository. The remaining tasks are accomplished from Visual Studio Code, unless specified.
79+
80+
```bash
81+
code .
82+
```
6783

6884
## Create a resource group for your Azure resources
6985

0 commit comments

Comments
 (0)