From d15cb8fb9e8d0b2c349cc82818128d088b2d2b03 Mon Sep 17 00:00:00 2001 From: lloydchang Date: Wed, 22 Jun 2022 21:32:04 -0700 Subject: [PATCH] docs(README.md): open curl.http in VS Code Why: If a person happens to be viewing `README.md` in GitHub instead of Visual Studio Code, adding this makes the context explicitly clearer. Otherwise, `curl.http` may be rendered in GitHub, which is a different context with a different user interface --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 648b956..857c20b 100644 --- a/README.md +++ b/README.md @@ -140,11 +140,20 @@ To get started using Kubernetes, we will manually deploy our IMDb application. T http localhost:30080/healthz ``` -Open [curl.http](./curl.http) +Open [curl.http](./curl.http) in Visual Studio Code + +Either click [curl.http](./curl.http) directly in Visual Studio Code + +Or via the terminal window + + ```bash + # Open curl.http in Visual Studio Code via terminal window + code /workspaces/gitopsdays/curl.http + ``` > [curl.http](./curl.http) is used in conjuction with the Visual Studio Code [REST Client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client) extension. > -> When you open [curl.http](./curl.http), you should see a clickable `Send Request` text above each of the URLs +> When you open [curl.http](./curl.http) in Visual Studio Code, you should see a clickable `Send Request` text above each of the URLs ![REST Client example](./images/RESTClient.png)