From f1d530280f5b0cfb7cde95d199d8872841d0c04e Mon Sep 17 00:00:00 2001 From: Roy Scheeren Date: Mon, 12 Feb 2024 12:26:58 +0100 Subject: [PATCH] docs: update path to pex Signed-off-by: Roy Scheeren --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e688269..d66adf5 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ A local deployment is a great way to test the bridge and to use it for prototypi 2. enter the domain for the vclogin service into the env file `/vclogin/.env` with key `EXTERNAL_URL` 3. enter a JWK key (Ed25519) into the env file `./vclogin/.env` with key `DID_KEY_JWK` (example for quick testing: `{"kty":"OKP","crv":"Ed25519","x":"cwa3dufHNLg8aQb2eEUqTyoM1cKQW3XnOkMkj_AAl5M","d":"me03qhLByT-NKrfXDeji-lpADSpVOKWoaMUzv5EyzKY"}`) 4. enter the path to a login policy file into the env file `/vclogin/.env` with key `LOGIN_POLICY` (example for quick testing: `./__tests__/testdata/policies/acceptAnything.json`) -5. OPTIONAL: enter an override for a credential descriptor into the env file `/vclogin/.env` with key `PEX_DESCRIPTOR_OVERRIDE` if direct control over what wallets are asked for is desired (example for quick testing: `./__tests__/pex/testdata/descriptorEmailFromAltme.json`) +5. OPTIONAL: enter an override for a credential descriptor into the env file `/vclogin/.env` with key `PEX_DESCRIPTOR_OVERRIDE` if direct control over what wallets are asked for is desired (example for quick testing: `./__tests__/testdata/pex/descriptorEmailFromAltme.json`) 6. at this point it needs to be ensured that the container for the vclogin service is freshly built with the new env file: `docker compose down && docker compose build` 7. `$ docker compose up`