2017-08-16 15:08:18 +02:00
< p align = "center" >
2018-07-26 21:30:46 +02:00
< img src = "https://github.com/bitwarden/brand/blob/master/screenshots/apps-combo-logo.png" alt = "Bitwarden" / >
2017-08-16 15:08:18 +02:00
< / p >
< p align = "center" >
2021-03-24 15:13:37 +01:00
< a href = "https://github.com/bitwarden/server/actions/workflows/build.yml?query=branch:master" target = "_blank" >
2021-03-23 21:25:23 +01:00
< img src = "https://github.com/bitwarden/server/actions/workflows/build.yml/badge.svg?branch=master" alt = "Github Workflow build on master" / >
2017-08-16 15:08:18 +02:00
< / a >
2017-12-05 17:11:13 +01:00
< a href = "https://hub.docker.com/u/bitwarden/" target = "_blank" >
< img src = "https://img.shields.io/docker/pulls/bitwarden/api.svg" alt = "DockerHub" / >
< / a >
2017-08-16 15:08:18 +02:00
< a href = "https://gitter.im/bitwarden/Lobby" target = "_blank" >
< img src = "https://badges.gitter.im/bitwarden/Lobby.svg" alt = "gitter chat" / >
< / a >
< / p >
2016-10-02 05:30:12 +02:00
2017-08-16 15:11:24 +02:00
-------------------
2019-01-19 04:20:05 +01:00
The Bitwarden Server project contains the APIs, database, and other core infrastructure items needed for the "backend" of all bitwarden client applications.
2016-10-02 05:30:12 +02:00
2019-01-19 04:20:05 +01:00
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.
2016-10-02 05:30:12 +02:00
2017-08-16 15:12:48 +02:00
## Build/Run
2017-05-19 19:29:16 +02:00
2021-03-21 22:56:31 +01:00
Please read the [Setup guide ](https://github.com/bitwarden/server/blob/master/SETUP.md ) for a step-by-step guide to set up your own local development server.
2017-08-16 15:12:48 +02:00
### Requirements
2017-05-19 19:29:16 +02:00
Postgres & MySql Support For Self-Hosted Installations (#1386)
* EF Database Support Init (#1221)
* scaffolding for ef support
* deleted old postgres repos
* added tables to oncreate
* updated all the things to .NET 5
* Addition to #1221: Migrated DockerFiles from dotnet/3.1 to 5.0 (#1223)
* Migrated DockerFiles from dotnet/3.1 to 5.0
* Migrated SSO/Dockerfile from dotnet 3.1 to 5.0
Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
* EFDatabaseSupport: Updated links and description in README.md and SETUP.md (#1232)
* Updated requirements in README.md
* Updated link to documentation of app-secrets
* upgraded dotnet version to 5.0
* Ef database support implementation examples (#1265)
* mostly finished testing the user repo
* finished testing user repo
* finished org, user, ssoconfig, and ssouser ef implementations
* removed unused prop
* fixed a sql file
* fixed a spacing issue
* fixed a spacing issue
* removed extra database creation
* refactoring
* MsSql => SqlServer
* refactoring
* code review fixes
* build fix
* code review
* continued attempts to fix the the build
* skipped another test
* finished all create test
* initial pass at several repos
* continued building out repos
* initial pass at several repos
* initial pass at device repo
* initial pass at collection repo
* initial run of all Entity Framework implementations
* signup, signin, create/edit ciphers works
* sync working
* all web vault pages seem to load with 100% 200s
* bulkcopy, folders, and favorites
* group and collection management
* sso, groups, emergency access, send
* get basic creates matching on all repos
* got everything building again post merge
* removed some IDE config files
* cleanup
* no more notimplemented methods in the cipher repo
* no more not implementeds everywhere
* cleaned up schema/navigation properties and fixed tests
* removed a sql comment that was written in c# style
* fixed build issues from merge
* removed unsupported db providers
* formatting
* code review refactors
* naming cleanup for queries
* added provider methods
* cipher repo cleanup
* implemented several missing procedures from the EF implementation surround account revision dates, keys, and storage
* fixed the build
* added a null check
* consolidated some cipher repo methods
* formatting fix
* cleaned up indentation of queries
* removed .idea file
* generated postgres migrations
* added mysql migrations
* formatting
* Bug Fixes & Formatting
* Formatting
* fixed a bug with bulk import when using MySql
* code review fixes
* fixed the build
* implemented new methods
* formatting
* fixed the build
* cleaned up select statements in ef queries
* formatting
* formatting
* formatting
Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
2021-07-08 18:35:48 +02:00
- [.NET Core 5.0 SDK ](https://www.microsoft.com/net/download/core )
2017-12-12 22:30:38 +01:00
- [SQL Server 2017 ](https://docs.microsoft.com/en-us/sql/index )
2017-08-16 07:01:36 +02:00
2017-08-17 04:51:44 +02:00
*These dependencies are free to use.*
2017-08-16 15:12:48 +02:00
### Recommended Development Tooling
2017-08-16 07:01:36 +02:00
- [Visual Studio ](https://www.visualstudio.com/vs/ ) (Windows and macOS)
- [Visual Studio Code ](https://code.visualstudio.com/ ) (other)
2017-08-17 04:54:04 +02:00
*These tools are free to use.*
2017-08-16 15:12:48 +02:00
### API
2017-08-16 07:01:36 +02:00
```
2017-08-26 03:49:20 +02:00
cd src/Api
dotnet restore
2018-08-06 15:11:27 +02:00
dotnet build
dotnet run
2017-08-16 07:01:36 +02:00
```
2021-03-11 21:32:41 +01:00
visit http://localhost:4000/alive
2017-08-16 07:01:36 +02:00
2017-08-16 15:12:48 +02:00
### Identity
2017-08-16 07:01:36 +02:00
```
2017-08-26 03:49:20 +02:00
cd src/Identity
dotnet restore
2018-08-06 15:11:27 +02:00
dotnet build
dotnet run
2017-08-16 07:01:36 +02:00
```
2017-05-19 19:29:16 +02:00
2017-08-16 07:01:36 +02:00
visit http://localhost:33657/.well-known/openid-configuration
2017-05-19 19:29:16 +02:00
2017-08-19 19:14:21 +02:00
## Deploy
2017-08-19 19:20:15 +02:00
< p align = "center" >
2017-08-19 19:22:22 +02:00
< a href = "https://hub.docker.com/u/bitwarden/" target = "_blank" >
< img src = "https://i.imgur.com/SZc8JnH.png" alt = "docker" / >
< / a >
2017-08-19 19:20:15 +02:00
< / p >
2018-03-03 14:01:07 +01:00
You can deploy Bitwarden using Docker containers on Windows, macOS, and Linux distributions. Use the provided PowerShell and Bash scripts to get started quickly. Find all of the Bitwarden images on [Docker Hub ](https://hub.docker.com/u/bitwarden/ ).
2017-08-19 19:14:21 +02:00
2018-02-27 20:16:19 +01:00
Full documentation for deploying Bitwarden with Docker can be found in our help center at: https://help.bitwarden.com/article/install-on-premise/
2017-09-28 05:33:14 +02:00
2017-08-19 19:14:21 +02:00
### Requirements
- [Docker ](https://www.docker.com/community-edition#/download )
- [Docker Compose ](https://docs.docker.com/compose/install/ ) (already included with some Docker installations)
2017-08-19 19:29:46 +02:00
*These dependencies are free to use.*
2017-08-21 14:49:44 +02:00
### Linux & macOS
2017-08-19 19:14:21 +02:00
```
2017-08-26 03:49:20 +02:00
curl -s -o bitwarden.sh \
2019-01-19 04:20:05 +01:00
https://raw.githubusercontent.com/bitwarden/server/master/scripts/bitwarden.sh \
2018-06-01 22:23:28 +02:00
& & chmod +x bitwarden.sh
2017-08-26 03:49:20 +02:00
./bitwarden.sh install
./bitwarden.sh start
2017-08-19 19:14:21 +02:00
```
2017-08-21 14:49:44 +02:00
### Windows
2017-08-19 19:14:21 +02:00
```
2017-08-26 03:49:20 +02:00
Invoke-RestMethod -OutFile bitwarden.ps1 `
2019-01-19 04:20:05 +01:00
-Uri https://raw.githubusercontent.com/bitwarden/server/master/scripts/bitwarden.ps1
2017-08-26 03:49:20 +02:00
.\bitwarden.ps1 -install
.\bitwarden.ps1 -start
2017-08-19 19:14:21 +02:00
```
2017-08-16 15:12:48 +02:00
## Contribute
2016-10-02 05:30:12 +02:00
2020-09-28 15:48:05 +02:00
Code contributions are welcome! Visual Studio or VS Code is highly recommended if you are working on this project. Please commit any pull requests against the `master` branch. Please see [`CONTRIBUTING.md` ](CONTRIBUTING.md ) for more info (and feel free to contribute to that guide as well).
2016-10-02 05:30:12 +02:00
2017-12-12 22:30:38 +01:00
Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the [`SECURITY.md` ](SECURITY.md ) file. We also run a program on [HackerOne ](https://hackerone.com/bitwarden ).
2021-03-26 19:18:03 +01:00
No grant of any rights in the trademarks, service marks, or logos of Bitwarden is made (except as may be necessary to comply with the notice requirements as applicable), and use of any Bitwarden trademarks must comply with [Bitwarden Trademark Guidelines ](https://github.com/bitwarden/server/blob/master/TRADEMARK_GUIDELINES.md ).