Skip to content

Commit 8150d5d

Browse files
authored
Merge pull request hsachinraj#9 from hsachinraj/Readyworkshop2
fixing script
2 parents 66d8601 + c8e1bd4 commit 8150d5d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Once the repo is forked, clone the GitHub repo locally and open it in Visual Stu
9999

100100
**Azure Subscription**
101101

102-
We will be publishing a node-based web app that has a Cosmos DB (Mongo DB) backend. You will need an Azure subscription. If you do not want to deploy to your subscription, you can use the Azure Pass provided for this technical workshop. See the **resources** tab for your Azure pass code. You will need to go to [https://www.microsoftazurepass.com](https://www.microsoftazurepass.com/) and redeem that code against any MSA. Then you would use the MSA to log into the Azure Portal.
102+
>[!note] We will be publishing a node-based web app that has a Cosmos DB (Mongo DB) backend. You will need an Azure subscription. If you do not want to deploy to your subscription, you can use the Azure Pass provided for this technical workshop. See the **resources** tab for your Azure pass code. You will need to go to [https://www.microsoftazurepass.com](https://www.microsoftazurepass.com/) and redeem that code against any MSA. Then you would use the MSA to log into the Azure Portal.
103103

104104
- [] Open a new tab and navigate to [https://dev.azure.com](https://dev.azure.com) to create a new Azure DevOps org/account. Select **Start for free**. Enter the same credentials you entered to login to Azure
105105

@@ -195,9 +195,9 @@ Now that Azure Pipelines has been installed and configured, we can start buildin
195195

196196
1. Replace the default template with the YAML below. To make it easy to copy and paste the code, we have saved this in a file named **firstpipeline.yml** in the desktop folder inside the VM. Double click the file to open it in VS Code.
197197

198-
>[!note]: YAML is very strict with indentation. If you are new to YAML, I would recommend that you use tools to format and validate the code. There are several free tools available on the web.
198+
>[!note] YAML is very strict with indentation. If you are new to YAML, I would recommend that you use tools to format and validate the code. There are several free tools available on the web.
199199
200-
````yaml
200+
````yaml-nocopy
201201
pool:
202202
vmImage: 'ubuntu-16.04'
203203
@@ -318,7 +318,7 @@ Now that we have our CI successfully built, it's time to deploy but how do we kn
318318

319319
1. We will remove all the steps and replace it with the following code. You can copy and paste the code from **SecondPipeline.yml** file from the desktop inside the VM.
320320

321-
````yaml
321+
````yaml-nocopy
322322
pool:
323323
vmImage: 'ubuntu-16.04'
324324
@@ -757,7 +757,7 @@ custom reporting. By connecting Azure Boards with GitHub repositories, teams can
757757
with the code below. This will sort the
758758
airports by city.
759759
760-
````JavaScript
760+
````JavaScript-nocopy
761761
762762
getAll(){
763763
return this._airports.filter(a => a.code).map(avoidEmptyCity).sort((a, b) => (a.city > b.city) ? 1 : -1);

0 commit comments

Comments
 (0)