2021-06-25 12:18:25 +02:00
|
|
|
# CovidPass
|
|
|
|
|
2021-06-26 14:40:15 +02:00
|
|
|
![CovidPass](https://covidpass.marvinsextro.de/thumbnail.png)
|
|
|
|
|
2021-06-25 21:21:58 +02:00
|
|
|
Web app for adding EU COVID-19 Vaccination Certificates to your wallets
|
2021-06-25 12:18:25 +02:00
|
|
|
|
2021-06-26 14:22:53 +02:00
|
|
|
The API can be found [here](https://github.com/marvinsxtr/covidpass-api).
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
```sh
|
|
|
|
npm install
|
|
|
|
npm install -g nodemon
|
|
|
|
```
|
|
|
|
|
2021-06-25 12:18:25 +02:00
|
|
|
## Debug locally
|
|
|
|
|
2021-06-26 00:28:35 +02:00
|
|
|
```sh
|
|
|
|
nodemon -w server.js server.js
|
|
|
|
```
|
|
|
|
|
|
|
|
Build and run the container
|
|
|
|
|
2021-06-25 12:18:25 +02:00
|
|
|
```sh
|
|
|
|
docker build . -t covidpass
|
2021-06-25 21:21:58 +02:00
|
|
|
docker run -t -i -p 3000:3000 covidpass
|
2021-06-25 12:18:25 +02:00
|
|
|
```
|