added info about how to create a key

pull/7/head
Ed Summers 2022-11-22 08:40:21 -05:00
rodzic 3310efc4a7
commit 9a30a902a3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D012FF557AFFF80A
1 zmienionych plików z 15 dodań i 0 usunięć

Wyświetl plik

@ -55,6 +55,21 @@ npm run generate-dev-cert # Will generate a certificate for self-signing PDFs. F
npm run dev # Starts the development server on port 3000
```
Create an access key to test with:
```
$ uuidgen
BB67BBC4-1F4B-4353-8E6D-9927A10F4509
```
and then add the key to `app/data/access-keys.json`:
```json
{
"BB67BBC4-1F4B-4353-8E6D-9927A10F4509": true,
}
```
[☝️ Back to summary](#summary)
---