|
1 | | -# Ruby on Rails and React: MyConnectWebhook Sample Application |
| 1 | +# Ruby on Rails and React: Webhooks Sample App |
2 | 2 |
|
3 | | -### Github repo: MyConnectWebhookSampleApp |
| 3 | +### Github repo: Webhooks Sample App |
4 | 4 |
|
5 | 5 | ## Introduction |
6 | | -MyConnectWebhook is a Docusign sample application written in Ruby on Rails (server) and React (client). You can find a live instance running at [https://myconnectwebhook.sampleapps.docusign.com/](https://myconnectwebhook.sampleapps.docusign.com/). |
| 6 | +The Webhooks Sample App is a Docusign sample application written in Ruby on Rails (server) and React (client). You can find a live instance running at [https://webhooks.sampleapps.docusign.com/](https://webhooks.sampleapps.docusign.com/). |
7 | 7 |
|
8 | | -MyConnectWebhook demonstrates the following: |
| 8 | +The Webhooks Sample App demonstrates the following: |
9 | 9 |
|
10 | 10 | 1. **Authentication** with Docusign via [JSON Web Token (JWT) Grant](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-jsonwebtoken). |
11 | 11 | 2. **Bulk sending multiple envelopes:** ([Source](./app/services/e_sign/bulk_sending_envelopes_service.rb)) |
@@ -37,13 +37,13 @@ MyConnectWebhook demonstrates the following: |
37 | 37 | ## Installation steps |
38 | 38 |
|
39 | 39 | ### Clone project |
40 | | -Clone project into folder `./sample-app-myconnectwebhook-ruby` |
| 40 | +Clone project into folder `./sample-app-webhooks-ruby` |
41 | 41 | ``` |
42 | | -git clone [email protected]:docusign/sample-app-myconnectwebhook-ruby.git |
| 42 | +git clone [email protected]:docusign/sample-app-webhooks-ruby.git |
43 | 43 | ``` |
44 | 44 | ### Run command to move to project folder |
45 | 45 | ``` |
46 | | -cd sample-app-myconnectwebhook-ruby |
| 46 | +cd sample-app-webhooks-ruby |
47 | 47 | ``` |
48 | 48 |
|
49 | 49 | ### Create appsettings.yml file |
@@ -73,11 +73,11 @@ config.hosts << "xxx-xx-xxx-xxx-xx.ngrok.io" |
73 | 73 | ### Setup your custom Docusign Connect configuration |
74 | 74 |
|
75 | 75 | #### Using a ruby script |
76 | | -The ruby script included with this project sets up a custom Connect configuration with the same settings that the hosted app uses at https://myconnectwebhook.sampleapps.docusign.com. You'll need to provide a name for your new custom connect configuration as well as the URL to publish which, if running locally using ngrok, should follow the format `https://{YOUR_NGROK_HOST}.ngrok.io/api/docusign/trigger/do_process.json`. |
| 76 | +The ruby script included with this project sets up a custom Connect configuration with the same settings that the hosted app uses at https://webhooks.sampleapps.docusign.com. You'll need to provide a name for your new custom connect configuration as well as the URL to publish which, if running locally using ngrok, should follow the format `https://{YOUR_NGROK_HOST}.ngrok.io/api/docusign/trigger/do_process.json`. |
77 | 77 |
|
78 | 78 | * Navigate to the root folder of the app |
79 | 79 | ``` |
80 | | - cd sample-app-myconnectwebhook-ruby |
| 80 | + cd sample-app-webhooks-ruby |
81 | 81 | ``` |
82 | 82 | * Run the ruby script `create_connect_configuration.rb` |
83 | 83 | ``` |
@@ -196,7 +196,7 @@ Use NVM https://github.com/nvm-sh/nvm and Node.js version 16+. |
196 | 196 | yarn install |
197 | 197 | ``` |
198 | 198 |
|
199 | | -#### Running MyConnectWebhook Sample App |
| 199 | +#### Running the Webhooks Sample App |
200 | 200 | ``` |
201 | 201 | bin/dev |
202 | 202 | ``` |
|
0 commit comments