From f22858fe38e9b261e9a8daa6271e30169c40a2e0 Mon Sep 17 00:00:00 2001 From: Yev Date: Fri, 12 Jun 2020 15:07:48 -0400 Subject: [PATCH] Adding JQ as a dependency (#45) JQ is a dependency for section 7. Adding configuration instructions for Windows. --- 00-setup-your-environment/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/00-setup-your-environment/README.md b/00-setup-your-environment/README.md index 1c29953..9fa1fdf 100644 --- a/00-setup-your-environment/README.md +++ b/00-setup-your-environment/README.md @@ -33,6 +33,11 @@ This training lab requires the following to be installed on your machine: * The Bash shell. While Azure CLI should behave identically on all environments, some semantics may need to be modified if you use other shells. To complete this training on Windows, you can use [Git Bash that accompanies the Windows distribution of Git](https://git-scm.com/download/win). +* The `jq` utility. On Windows, download [this Windows port of JQ](https://github.com/stedolan/jq/releases) and add the following to the `~/.bashrc` file: + ```bash + alias jq=/jq-win64.exe + ``` + * 🚧 The `spring-cloud` extension for Azure CLI. You can install this extension after installing Azure CLI by running `az extension add -n spring-cloud -y`. > 💡 In sections 9 and 10, you will access the UI of the Microservice application in a Web browser. This UI does not render correctly in Internet Explorer and the pre-Chromium version of Edge. Use the [new Edge](https://microsoft.com/edge/?WT.mc_id=azurespringcloud-github-judubois), Google Chrome, or Firefox for these sections.