Skip to content

Commit dde209c

Browse files
author
Cephas Lin
committed
staged review
1 parent 7bea800 commit dde209c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/app-service/tutorial-dotnetcore-sqldb-app.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ In this tutorial, you learn how to:
5454
You can quickly deploy the sample app in this tutorial and see it running in Azure. Just run the following commands in the [Azure Cloud Shell](https://shell.azure.com), and follow the prompt:
5555

5656
```bash
57+
dotnet tool install --global dotnet-ef
5758
mkdir msdocs-app-service-sqldb-dotnetcore
5859
cd msdocs-app-service-sqldb-dotnetcore
5960
azd init --template msdocs-app-service-sqldb-dotnetcore
@@ -80,7 +81,7 @@ First, you set up a sample data-driven app as a starting point. For your conveni
8081
:::column span="2":::
8182
**Step 2:** In the GitHub fork:
8283
1. Select **main** > **starter-no-infra** for the starter branch. This branch contains just the sample project and no Azure-related files or configuration.
83-
1. Select **Code** > **Create codespace on main**.
84+
1. Select **Code** > **Create codespace on starter-no-infra**.
8485
The codespace takes a few minutes to set up.
8586
:::column-end:::
8687
:::column:::
@@ -141,9 +142,9 @@ Sign in to the [Azure portal](https://portal.azure.com/) and follow these steps
141142
1. *Region*: Any Azure region near you.
142143
1. *Name*: **msdocs-core-sql-XYZ** where *XYZ* is any three random characters. This name must be unique across Azure.
143144
1. *Runtime stack*: **.NET 8 (LTS)**.
145+
1. *Engine*: **SQLAzure**. Azure SQL Database is a fully managed platform as a service (PaaS) database engine that's always running on the latest stable version of the SQL Server.
144146
1. *Add Azure Cache for Redis?*: **Yes**.
145147
1. *Hosting plan*: **Basic**. When you're ready, you can [scale up](manage-scale-up.md) to a production pricing tier later.
146-
1. Select **SQLAzure** as the database engine. Azure SQL Database is a fully managed platform as a service (PaaS) database engine that's always running on the latest stable version of the SQL Server.
147148
1. Select **Review + create**.
148149
1. After validation completes, select **Create**.
149150
:::column-end:::
@@ -276,7 +277,7 @@ The creation wizard generated the connectivity string for you already as [.NET c
276277
:::row-end:::
277278
:::row:::
278279
:::column span="2":::
279-
**Step 8:** To verify that you secured the secrets:
280+
**Step 8:** To verify that your changes:
280281
1. From the left menu, select **Environment variables > Connection strings** again.
281282
1. Next to **AZURE_SQL_CONNECTIONSTRING**, select **Show value**. The value should be `@Microsoft.KeyValut(...)`, which means that it's a [key vault reference](app-service-key-vault-references.md) because the secret is now managed in the key vault.
282283
1. To verify the Redis connection string, select the **App setting** tab. Next to **AZURE_REDIS_CONNECTIONSTRING**, select **Show value**. The value should be `@Microsoft.KeyValut(...)` too.
@@ -389,7 +390,7 @@ In this step, you configure GitHub deployment using GitHub Actions. It's just on
389390
:::column span="2":::
390391
**Step 7:**
391392
Back in the Deployment Center page in the Azure portal:
392-
1. Select **Logs**. A new deployment run is already started from your committed changes. You might need to select **Refresh** to see it.
393+
1. Select the **Logs** tab, then select **Refresh** to see the new deployment run.
393394
1. In the log item for the deployment run, select the **Build/Deploy Logs** entry with the latest timestamp.
394395
:::column-end:::
395396
:::column:::

0 commit comments

Comments
 (0)