From e0866fa11d47fe053c1d87d279a0ea9a119782b6 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 25 Aug 2017 21:49:20 -0400 Subject: [PATCH] Update README.md --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 0af89ac195..52a5b8305e 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,10 @@ The core infrastructure is written in C# using .NET Core with ASP.NET Core. The ### API ``` -$ cd src/Api -$ dotnet restore -$ dotnet build -f netcoreapp2.0 -$ dotnet run -f netcoreapp2.0 +cd src/Api +dotnet restore +dotnet build -f netcoreapp2.0 +dotnet run -f netcoreapp2.0 ``` visit http://localhost:5000/alive @@ -46,10 +46,10 @@ visit http://localhost:5000/alive ### Identity ``` -$ cd src/Identity -$ dotnet restore -$ dotnet build -f netcoreapp2.0 -$ dotnet run -f netcoreapp2.0 +cd src/Identity +dotnet restore +dotnet build -f netcoreapp2.0 +dotnet run -f netcoreapp2.0 ``` visit http://localhost:33657/.well-known/openid-configuration @@ -74,22 +74,22 @@ You can deploy bitwarden using Docker containers on Windows, macOS, and Linux di ### Linux & macOS ``` -$ curl -s -o bitwarden.sh \ +curl -s -o bitwarden.sh \ https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.sh \ && sudo chmod u+x bitwarden.sh -$ ./bitwarden.sh install -$ ./bitwarden.sh start -$ ./bitwarden.sh updatedb +./bitwarden.sh install +./bitwarden.sh start +./bitwarden.sh updatedb ``` ### Windows ``` -> Invoke-RestMethod -OutFile bitwarden.ps1 ` +Invoke-RestMethod -OutFile bitwarden.ps1 ` -Uri https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.ps1 -> .\bitwarden.ps1 -install -> .\bitwarden.ps1 -start -> .\bitwarden.ps1 -updatedb +.\bitwarden.ps1 -install +.\bitwarden.ps1 -start +.\bitwarden.ps1 -updatedb ``` ## Contribute