You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.MD
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,11 +70,19 @@ The Insurance Sample App demonstrates the following:
70
70
npm install
71
71
```
72
72
5. Update the **.env** file with the integration key and other settings.
73
-
> **Note:** Protect your integration key and client secret. You should make sure that the **.env** file will not be stored in your source code repository.
74
-
6. Navigate to [the admin demo Apps and Keys page](https://admindemo.docusign.com/authenticate?goTo=appsAndKeys), add the Redirect URI http://localhost:3000/callback and then hit save
73
+
> **Note:** Protect your integration key and client secret. You should make sure that the **.env** file will not be stored in your source code repository.
74
+
6. Navigate to [the admin demo Apps and Keys page](https://admindemo.docusign.com/authenticate?goTo=appsAndKeys), add the Redirect URI http://localhost:3000/callback and generate your RSA key pair if you haven't already.
75
75
76
76
> **Note:** You should add a dynamic content properties to your clickwrap by following this [instruction](https://developers.docusign.com/docs/click-api/click101/customize-elastic-template-fields/) before using it in the sample app.
77
77
78
+
7. Update the **private.key** file with your private RSA key.
79
+
8. Copy your **.env** and your **private.key** files into the server folder
80
+
```shell
81
+
cd ../
82
+
cp .env server/.env
83
+
cp private.key server/private.key
84
+
```
85
+
78
86
**Using installation scripts**
79
87
80
88
1. Download or clone this repository to your workstation in a new folder named **sample-app-insurance-python**.
0 commit comments