diff --git a/README.md b/README.md index 65301ffa3..d9de14413 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ Bitwarden

- - appveyor build + + appveyor build DockerHub @@ -15,9 +15,9 @@ ------------------- -The Bitwarden Core project contains the APIs, database, and other infrastructure items needed for the "backend" of all bitwarden client applications. +The Bitwarden Server project contains the APIs, database, and other core infrastructure items needed for the "backend" of all bitwarden client applications. -The core infrastructure is written in C# using .NET Core with ASP.NET Core. The database is written in T-SQL/SQL Server. The codebase can be developed, built, run, and deployed cross-platform on Windows, macOS, and Linux distributions. +The server project is written in C# using .NET Core with ASP.NET Core. The database is written in T-SQL/SQL Server. The codebase can be developed, built, run, and deployed cross-platform on Windows, macOS, and Linux distributions. ## Build/Run @@ -80,7 +80,7 @@ Full documentation for deploying Bitwarden with Docker can be found in our help ``` curl -s -o bitwarden.sh \ - https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.sh \ + https://raw.githubusercontent.com/bitwarden/server/master/scripts/bitwarden.sh \ && chmod +x bitwarden.sh ./bitwarden.sh install ./bitwarden.sh start @@ -91,7 +91,7 @@ curl -s -o bitwarden.sh \ ``` Invoke-RestMethod -OutFile bitwarden.ps1 ` - -Uri https://raw.githubusercontent.com/bitwarden/core/master/scripts/bitwarden.ps1 + -Uri https://raw.githubusercontent.com/bitwarden/server/master/scripts/bitwarden.ps1 .\bitwarden.ps1 -install .\bitwarden.ps1 -start .\bitwarden.ps1 -updatedb diff --git a/bitwarden-core.sln b/bitwarden-server.sln similarity index 100% rename from bitwarden-core.sln rename to bitwarden-server.sln diff --git a/src/Admin/Views/Home/Index.cshtml b/src/Admin/Views/Home/Index.cshtml index ceef822e5..0b19a7a93 100644 --- a/src/Admin/Views/Home/Index.cshtml +++ b/src/Admin/Views/Home/Index.cshtml @@ -89,7 +89,7 @@

diff --git a/util/Setup/Configuration.cs b/util/Setup/Configuration.cs index dd1c20f39..525a61b4b 100644 --- a/util/Setup/Configuration.cs +++ b/util/Setup/Configuration.cs @@ -15,13 +15,13 @@ namespace Bit.Setup [Description("Auto-generate the `./docker/docker-compose.yml` config file.\n" + "WARNING: Disabling generated config files can break future updates. You will be\n" + "responsible for maintaining this config file.\n" + - "Template: https://github.com/bitwarden/core/blob/master/util/Setup/Templates/DockerCompose.hbs")] + "Template: https://github.com/bitwarden/server/blob/master/util/Setup/Templates/DockerCompose.hbs")] public bool GenerateComposeConfig { get; set; } = true; [Description("Auto-generate the `./nginx/default.conf` file.\n" + "WARNING: Disabling generated config files can break future updates. You will be\n" + "responsible for maintaining this config file.\n" + - "Template: https://github.com/bitwarden/core/blob/master/util/Setup/Templates/NginxConfig.hbs")] + "Template: https://github.com/bitwarden/server/blob/master/util/Setup/Templates/NginxConfig.hbs")] public bool GenerateNginxConfig { get; set; } = true; [Description("Docker compose file port mapping for HTTP. Leave empty to remove the port mapping.\n" +