From b6f371474e9df506ccf5f106b233b49d935a24e3 Mon Sep 17 00:00:00 2001 From: Maarten Jacobs Date: Mon, 26 Feb 2024 16:53:57 +0000 Subject: [PATCH] Use private_key_file instead of private_key in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b5853e..ade32dd 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ You will need to set the following configuration variables in your config file: config :docusign, hostname: "account-d.docusign.com", client_id: "?????-?????-???????", - private_key: "docusign_key.pem" + private_key_file: "docusign_key.pem" ``` Notes: @@ -67,7 +67,7 @@ And the corresponding config file: ``` config :docusign, client_id: System.fetch_env!("DOCUSIGN_CLIENT_ID"), - private_key: System.fetch_env!("DOCUSIGN_PRIVATE_KEY") + private_key_file: System.fetch_env!("DOCUSIGN_PRIVATE_KEY") ``` Then, just be sure to run `source .env` in your shell before compiling your project.