From a6a147568377ab28f8fca695d89053cb8a408acc Mon Sep 17 00:00:00 2001 From: Meysam Hadeli <35596795+meysamhadeli@users.noreply.github.com> Date: Thu, 5 Jan 2023 02:54:30 +0330 Subject: [PATCH] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5479a9d..7e8ba7f 100644 --- a/README.md +++ b/README.md @@ -138,13 +138,18 @@ Using the CQRS pattern, we cut each business functionality into vertical slices, Run the following commands for [Config SSL](https://docs.microsoft.com/en-us/aspnet/core/security/docker-compose-https?view=aspnetcore-6.0) in your system +#### Windows using Linux containers ```bash dotnet dev-certs https -ep %USERPROFILE%\.aspnet\https\aspnetapp.pfx -p password dotnet dev-certs https --trust ``` - > Note: for running this command in `powershell` use `$env:USERPROFILE` instead of `%USERPROFILE%` +#### macOS or Linux +```bash +dotnet dev-certs https -ep ${HOME}/.aspnet/https/aspnetapp.pfx -p $CREDENTIAL_PLACEHOLDER$ +dotnet dev-certs https --trust +``` ### Docker Compose Run this app in docker using the [docker-compose.yaml](./deployments/docker-compose/docker-compose.yaml) file with the below command at the root of the application: