From 9a30a902a3fd7c4232f088c3532688e0b0639681 Mon Sep 17 00:00:00 2001 From: Ed Summers Date: Tue, 22 Nov 2022 08:40:21 -0500 Subject: [PATCH] added info about how to create a key --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index ddc856e..cdc8e14 100644 --- a/README.md +++ b/README.md @@ -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) ---