Skip to content

Commit

Permalink
Use private_key_file instead of private_key in README
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenJacobs authored and neilberkman committed Feb 27, 2024
1 parent a66af7d commit b6f3714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit b6f3714

Please sign in to comment.