You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/quickstart-golang.md
+17-7Lines changed: 17 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
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.
4
4
ms.topic: quickstart
5
5
ms.date: 10/13/2022
6
-
ms.devlang: golang
6
+
ms.devlang: go
7
7
ms.author: msangapu
8
8
author: msangapu-msft
9
9
---
@@ -18,8 +18,8 @@ In this quickstart, you'll deploy a Go web app to Azure App Service. Azure App S
18
18
19
19
To complete this quickstart, you need:
20
20
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.
23
23
24
24
## 1 - Sample Application
25
25
@@ -31,7 +31,7 @@ The `go mod init` command creates a go.mod file to track your code's dependencie
31
31
32
32
Create a file called main.go. We'll be doing most of our coding here.
33
33
34
-
```golang
34
+
```go
35
35
package main
36
36
import (
37
37
"fmt"
@@ -118,4 +118,14 @@ When no longer needed, you can use the [az group delete](/cli/azure/group#az-gro
118
118
119
119
```azurecli-interactive
120
120
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