Development • Documentation • Support • Contribute • Contributors • Repositories • Licensing
The goal of this project is to develop the official Corona-Warn-App for Germany based on the exposure notification API from Apple and Google. The apps (for both iOS and Android) use Bluetooth technology to exchange anonymous encrypted data with other mobile phones (on which the app is also installed) in the vicinity of an app user's phone. The data is stored locally on each user's device, preventing authorities or other parties from accessing or controlling the data. This repository contains the DCC Server for the Corona-Warn-App.
In the world of the Corona Warn App the DCC (Digital Covid Certificate) Server is responsible to manage the communication between all participating components to generate DCC. The following components are involved in the process of creating DCC.
- The Verification Server of the Corona Warn App (repository: cwa-verification-server) helps validating whether upload requests from the mobile App are valid or not.
- The Test Result Server of the Corona Warn App (repository: cwa-testresult-server) receives the results from laboratories and delivers these results to the app via the verification-server.
- The DCC Issueing Server of the IBM/ Ubirch (repository: https://github.com/Digitaler-Impfnachweis/certification-apis)
You can find an architectural overview of the components in the solution architecture document.
This component of the Corona-Warn-App whereas named dcc server provides indeed two functionalities:
- Upload PublicKeys from mobile apps to E2E encrypt DCC
- Provide the uploaded PublicKeys to test labs
- Sign and store the DCC and provide it to mobile apps
The software stack of the DCC Server is based on Spring Boot, currently with an in-memory H2 database. As the persistence relies on Liquibase.
This component can be locally build in order to test the functionality of the interfaces and verify the concepts it is built upon.
There are two ways to build:
- Maven build - to run this component as spring application on your local machine
- Docker build - to run it as docker container build from the provided docker build file
- Open JDK 11
- Maven
- (optional): Docker
Whether you cloned or downloaded the 'zipped' sources you will either find the sources in the chosen checkout-directory or get a zip file with the source code, which you can expand to a folder of your choice.
In either case open a terminal pointing to the directory you put the sources in. The local build process is described afterwards depending on the way you choose.
This is the recommended way for taking part in the development.
Please check, whether following prerequisites are installed on your machine:
- Open JDK 11 or a similar JDK 11 compatible VM
- Maven
You can then open a terminal pointing to the root directory of the verification server and do the following:
mvn package
java -jar target/cwa-dcc-server-1.0.0-SNAPSHOT.jar
The verification server will start up and run locally on your machine available on port 8080.
We recommend that you first check to ensure that Docker is installed on your machine.
On the command line do the following:
docker build -f|--file <path to dockerfile> -t <imagename> <path-to-dcc-server-root>
docker run -p 127.0.0.1:8080:8080/tcp -it <imagename>
or simply
docker build --pull --rm -f "Dockerfile" -t cwa-dcc-server "."
docker run -p 127.0.0.1:8080:8080/tcp -it cwa-dcc-server
if you are in the root of the checked out repository.
The docker image will then run on your local machine on port 8080 assuming you configured docker for shared network mode.
Along with the application there comes a swagger2 API documentation, which you can access in your web browser when the verification server applications runs:
<base-url>/api/swagger
Which results in the following URL on your local machine: http://localhost:8080/api/swagger
This repository contains files which support our CI/CD pipeline and will be removed without further notice
- DockerfileCi - used for the GitHub build chain
- Jenkinsfile - used for Telekom internal SBS (SoftwareBuildService)
The full documentation for the Corona-Warn-App can be found in the cwa-documentation repository. The documentation repository contains technical documents, architecture information, and white papers related to this implementation.
The following channels are available for discussions, feedback, and support requests:
Type | Channel |
---|---|
General Discussion | |
Concept Feedback | |
Verification server issues | |
Other requests |
Contribution and feedback is encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our Contribution Guidelines. By participating in this project, you agree to abide by its Code of Conduct at all times.
The German government has asked SAP AG and Deutsche Telekom AG to develop the Corona-Warn-App for Germany as open source software. Deutsche Telekom is providing the network and mobile technology and will operate and run the backend for the app in a safe, scalable and stable manner. SAP is responsible for the app development, its framework and the underlying platform. Therefore, development teams of SAP and Deutsche Telekom are contributing to this project. At the same time our commitment to open source means that we are enabling -in fact encouraging- all interested parties to contribute and become part of its developer community.
A list of all public repositories from the Corona-Warn-App can be found here.
Copyright (c) 2021-2023 Deutsche Telekom AG.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the LICENSE for the specific language governing permissions and limitations under the License.