From d0ef8c7eabf6794112f26c66de9d7851304b60fb Mon Sep 17 00:00:00 2001 From: samabos Date: Sun, 29 Dec 2024 14:51:54 +0000 Subject: [PATCH] docs: fix typo in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 754c735e5..063fbc2e1 100644 --- a/README.md +++ b/README.md @@ -69,13 +69,13 @@ dotnet new ca-usecase --help ## Database -The templates supports [PostgresSQL](https://www.postgresql.org), [SQLite](https://www.sqlite.org/), and [SQL Server](https://learn.microsoft.com/en-us/sql/sql-server/what-is-sql-server) (default option). Specify the database to use with the `--database` option: +The template supports [PostgresSQL](https://www.postgresql.org), [SQLite](https://www.sqlite.org/), and [SQL Server](https://learn.microsoft.com/en-us/sql/sql-server/what-is-sql-server) (default option). Specify the database to use with the `--database` option: ```bash dotnet new ca-sln --database [postgresql|sqlite|sqlserver] ``` -When you run the application the database will be automatically created (if necessary) and the latest migrations will be applied. +When you run the application, the database will be automatically created (if necessary) and the latest migrations will be applied. Running database migrations is easy. Ensure you add the following flags to your command (values assume you are executing from repository root) @@ -95,7 +95,7 @@ This template is structured to follow the Azure Developer CLI (azd). You can lea # Log in to Azure azd auth login -# Provsion and deploy to Azure +# Provision and deploy to Azure azd up ```