Skip to content

Commit 8bb56f8

Browse files
committed
revert includes
1 parent 7190c21 commit 8bb56f8

File tree

9 files changed

+69
-11
lines changed

9 files changed

+69
-11
lines changed
File renamed without changes.

articles/cosmos-db/nosql/quickstart-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Deploy this project's development container to your environment. Then, use the A
4545

4646
::: zone-end
4747

48-
[!INCLUDE[Developer Quickstart setup](../includes/azd-setup.md)]
48+
[!INCLUDE[Developer Quickstart setup](includes/quickstart/dev-setup.md)]
4949

5050
### Install the client library
5151

articles/cosmos-db/nosql/quickstart-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Deploy this project's development container to your environment. Then, use the A
4545

4646
::: zone-end
4747

48-
[!INCLUDE[Developer Quickstart setup](../includes/azd-setup.md)]
48+
[!INCLUDE[Developer Quickstart setup](includes/quickstart/dev-setup.md)]
4949

5050
### Install the client library
5151

articles/cosmos-db/nosql/quickstart-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Deploy this project's development container to your environment. Then, use the A
4545

4646
::: zone-end
4747

48-
[!INCLUDE[Developer Quickstart setup](../includes/azd-setup.md)]
48+
[!INCLUDE[Developer Quickstart setup](includes/quickstart/dev-setup.md)]
4949

5050
### Install the client library
5151

articles/cosmos-db/nosql/quickstart-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Deploy this project's development container to your environment. Then, use the A
4545

4646
::: zone-end
4747

48-
[!INCLUDE[Developer Quickstart setup](../includes/azd-setup.md)]
48+
[!INCLUDE[Developer Quickstart setup](includes/quickstart/dev-setup.md)]
4949

5050
### Install the client library
5151

articles/cosmos-db/nosql/quickstart-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Deploy this project's development container to your environment. Then, use the A
4545

4646
::: zone-end
4747

48-
[!INCLUDE[Developer Quickstart setup](../includes/azd-setup.md)]
48+
[!INCLUDE[Developer Quickstart setup](includes/quickstart/dev-setup.md)]
4949

5050
### Install the client library
5151

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
author: seesharprun
3+
ms.author: sidandrews
4+
ms.service: cosmos-db
5+
ms.subservice: nosql
6+
ms.topic: include
7+
ms.date: 01/08/2024
8+
ms.custom: include file
9+
zone_pivot_groups: azure-cosmos-db-quickstart-env
10+
---
11+
12+
::: zone pivot="devcontainer-codespace"
13+
14+
> [!IMPORTANT]
15+
> GitHub accounts include an entitlement of storage and core hours at no cost. For more information, see [included storage and core hours for GitHub accounts](https://docs.github.com/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces#monthly-included-storage-and-core-hours-for-personal-accounts).
16+
17+
::: zone-end
18+
19+
::: zone pivot="devcontainer-vscode"
20+
21+
::: zone-end
22+
23+
1. Open a terminal in the root directory of the project.
24+
25+
1. Authenticate to the Azure Developer CLI using `azd auth login`. Follow the steps specified by the tool to authenticate to the CLI using your preferred Azure credentials.
26+
27+
```azurecli
28+
azd auth login
29+
```
30+
31+
1. Use `azd init` to initialize the project.
32+
33+
```azurecli
34+
azd init
35+
```
36+
37+
1. During initialization, configure a unique environment name.
38+
39+
> [!TIP]
40+
> The environment name will also be used as the target resource group name. For this quickstart, consider using `msdocs-cosmos-db`.
41+
42+
1. Deploy the Azure Cosmos DB account using `azd up`. The Bicep templates also deploy a sample web application.
43+
44+
```azurecli
45+
azd up
46+
```
47+
48+
1. During the provisioning process, select your subscription and desired location. Wait for the provisioning process to complete. The process can take **approximately five minutes**.
49+
50+
1. Once the provisioning of your Azure resources is done, a URL to the running web application is included in the output.
51+
52+
```output
53+
Deploying services (azd deploy)
54+
55+
(✓) Done: Deploying service web
56+
- Endpoint: <https://[container-app-sub-domain].azurecontainerapps.io>
57+
58+
SUCCESS: Your application was provisioned and deployed to Azure in 5 minutes 0 seconds.
59+
```
60+
61+
1. Use the URL in the console to navigate to your web application in the browser. Observe the output of the running app.
62+
63+
:::image type="content" source="../media/cosmos-table-app.png" alt-text="Screenshot of the running web application.":::
153 KB
Loading

articles/cosmos-db/table/quickstart-dotnet.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ This quickstart shows how to get started with the Azure Cosmos DB for Table from
3535

3636
[!INCLUDE[Developer Quickstart prerequisites](includes/dev-prereqs.md)]
3737

38-
### Prerequisite check
39-
40-
* In a terminal or command window, run ``dotnet --list-sdks`` to check that .NET 6.x is one of the available versions.
41-
* Run ``az --version`` (Azure CLI) or ``Get-Module -ListAvailable AzureRM`` (Azure PowerShell) to check that you have the appropriate Azure command-line tools installed.
42-
4338
## Setting up
4439

4540
Deploy this project's development container to your environment. Then, use the Azure Developer CLI (azd) to create an Azure Cosmos DB for Table account and deploy a containerized sample application. The sample application uses the client library to manage, create, read, and query sample data.
@@ -56,7 +51,7 @@ Deploy this project's development container to your environment. Then, use the A
5651

5752
::: zone-end
5853

59-
[!INCLUDE[Developer Quickstart setup](../includes/azd-setup.md)]
54+
[!INCLUDE[Developer Quickstart setup](/includes/dev-setup.md)]
6055

6156
### Install the client library
6257

0 commit comments

Comments
 (0)