Skip to content

Commit a5bdd72

Browse files
committed
feedback
1 parent e81ae43 commit a5bdd72

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

articles/app-service/quickstart-golang.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: 'Quickstart: Create a GoLang web app'
3-
description: Deploy your first Go Hello World to Azure App Service in minutes.
2+
title: 'Quickstart: Create a Go web app'
3+
description: Deploy your first Go (GoLang) Hello World to Azure App Service in minutes.
44
ms.topic: quickstart
55
ms.date: 10/13/2022
6-
ms.devlang: golang
6+
ms.devlang: go
77
ms.author: msangapu
88
author: msangapu-msft
99
---
@@ -18,8 +18,8 @@ In this quickstart, you'll deploy a Go web app to Azure App Service. Azure App S
1818

1919
To complete this quickstart, you need:
2020

21-
1. An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs).
22-
2. [Go 1.18](https://go.dev/dl/) or higher installed locally.
21+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs).
22+
- [Go 1.18](https://go.dev/dl/) or higher installed locally.
2323

2424
## 1 - Sample Application
2525

@@ -31,7 +31,7 @@ The `go mod init` command creates a go.mod file to track your code's dependencie
3131

3232
Create a file called main.go. We'll be doing most of our coding here.
3333

34-
```golang
34+
```go
3535
package main
3636
import (
3737
"fmt"
@@ -118,4 +118,14 @@ When no longer needed, you can use the [az group delete](/cli/azure/group#az-gro
118118

119119
```azurecli-interactive
120120
az group delete --resource-group <resource-group-name>
121-
```
121+
```
122+
## Next steps
123+
124+
> [!div class="nextstepaction"]
125+
> [Configure an App Service app](./configure-common.md)
126+
127+
> [!div class="nextstepaction"]
128+
> [Tutorial: Deploy from Azure Container Registry](./tutorial-custom-container.md)
129+
130+
> [!div class="nextstepaction"]
131+
> [Tutorial: Map a custom domain name](./app-service-web-tutorial-custom-domain.md)

0 commit comments

Comments
 (0)