Skip to content

Commit 1ce33f8

Browse files
committed
Renaming from Maestro Sample App to Workflows Sample App
1 parent ebbe0eb commit 1ce33f8

File tree

5 files changed

+17
-20
lines changed

5 files changed

+17
-20
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Node.js and React: Maestro Sample App
1+
# Node.js and React: Workflows Sample App
22

33
## Introduction
44

5-
Welcome to the Maestro Sample App! The app is written using Node.js and React. Docusign Maestro lets you easily build and deploy customized workflows that automate and accelerate your agreement processes without writing any code. Maestro connects all the tools and activities in your workflow so that agreement processes are more efficient, more uniform, and have better visibility.
5+
Welcome to the Workflows Sample App! The app is written using Node.js and React. Docusign Maestro lets you easily build and deploy customized workflows that automate and accelerate your agreement processes without writing any code. Maestro connects all the tools and activities in your workflow so that agreement processes are more efficient, more uniform, and have better visibility.
66

77
With Docusign Maestro, you can combine Docusign features such as ID Verification, Web Forms, and eSignature with third-party extensions to automate your workflows from end to end.
88

@@ -34,8 +34,8 @@ If you run this project in Docker using the **docker-compose.local.yml** file, t
3434

3535
### Install dependencies locally
3636

37-
1. Download or clone this repository to your workstation in a new folder named **sample-app-maestro-node**.
38-
2. Navigate to that folder: **`cd sample-app-maestro-node`**
37+
1. Download or clone this repository to your workstation in a new folder named **sample-app-workflows-node**.
38+
2. Navigate to that folder: **`cd sample-app-workflows-node`**
3939
3. Navigate to the **client** folder: **`cd client`**
4040
4. Install dependencies using the [npm](https://www.npmjs.com/) package manager: **`npm install`**
4141
5. Navigate to the **server** folder: **`cd ../server`**
@@ -44,20 +44,20 @@ If you run this project in Docker using the **docker-compose.local.yml** file, t
4444
> **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.
4545
8. Rename the **example_private.key** file to **private.key**, and paste your complete private RSA key into this file (including the header and footer of the key). This should be the private RSA you should have gotten when you created your Docusign account.
4646

47-
## Running the Maestro Sample App in development mode
47+
## Running the Workflows Sample App in development mode
4848

49-
1. Navigate to the application folder: **`cd sample-app-maestro-node`**
49+
1. Navigate to the application folder: **`cd sample-app-workflows-node`**
5050
2. To start the server and client at the same time: **`npm run concurrently:dev`**
5151
3. **Or,** to run the server and client separately:
5252
- In one terminal, run **`npm run client:dev`**
5353
- In a separate terminal, run **`npm run server:dev`**
5454
4. Open a browser to **http://localhost:3000**
5555

56-
## Running the Maestro Sample App in Docker
56+
## Running the Workflows Sample App in Docker
5757

5858
You can run the application in Docker locally in production mode:
5959

60-
1. Navigate to the application folder: **`cd sample-app-maestro-node`**
60+
1. Navigate to the application folder: **`cd sample-app-workflows-node`**
6161
2. Make sure that you configured **.env** file and saved your **private.key** in the root of the folder. Make sure that you have Docker installed.
6262
3. Run **`docker-compose -f docker-compose.local.yaml up -d`**
6363
4. To stop containers, run **`docker compose -f docker-compose.local.yaml down`**

client/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Maestro Sample App Frontend
1+
# Workflows Sample App Frontend
22

33
![React + Vite](./src/assets/img/favicon.png) ![React + Vite](./src/assets/img/logo.svg)
44

55
Created with React + Vite! This setup provides a minimal yet powerful environment to develop React applications with Vite. It includes Hot Module Replacement (HMR) and some ESLint rules to ensure code quality.
66

77
## Table of Contents
88

9-
- [Maestro Sample App Frontend](#maestro-frontend)
9+
- [Workflows Sample App Frontend](#maestro-frontend)
1010
- [Table of Contents](#table-of-contents)
1111
- [Available Scripts](#available-scripts)
1212
- [`npm run dev`](#npm-run-dev)

client/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<meta property="og:title" content="Maestro Sample App" />
7-
<meta property="og:description" content="Leverage the power of Docusign workflows with Maestro. The Maestro Sample App showcases how the Maestro API (beta) can be used to create workflow definitions and trigger, cancel, and get status updates for workflow instances." />
6+
<meta property="og:title" content="Workflows Sample App" />
7+
<meta property="og:description" content="Leverage the power of Docusign workflows with Maestro. The Workflows Sample App showcases how the Maestro API (beta) can be used to get workflow definitions trigger workflow instances." />
88
<meta property="og:image" content="/og-image.jpg" />
9-
<title>Maestro Sample App</title>
9+
<title>Workflows Sample App</title>
1010
<link rel="icon" type="image/x-icon" href="./src/assets/img/favicon.png">
1111
</head>
1212
<body>

client/src/assets/text.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"hero": {
3-
"title": "Welcome to the Maestro Sample App",
4-
"paragraph": "Discover the power of the Docusign Maestro API (beta). Create, trigger, and manage Maestro workflows in an interactive environment.",
3+
"title": "Welcome to the Workflows Sample App",
4+
"paragraph": "Discover the power of the Docusign Maestro API (beta). Trigger and manage Maestro workflows in an interactive environment.",
55
"tryButton": "Try the App",
66
"GitHub": "Go to GitHub",
77
"footer": {
@@ -14,7 +14,7 @@
1414
},
1515
"login": {
1616
"acg": "Authorization Code Grant",
17-
"acgDescription": "This authentication type lets you create, trigger, and manage workflows in your own account.",
17+
"acgDescription": "This authentication type lets you trigger and manage workflows in your own account.",
1818
"jwt": "JSON Web Token",
1919
"jwtDescription": "This authentication type lets you trigger and manage workflows in our preconfigured account."
2020
},
@@ -94,7 +94,7 @@
9494
"backHome": "← Back to workflows"
9595
},
9696
"links": {
97-
"github": "https://github.com/docusign/sample-app-maestro-node",
97+
"github": "https://github.com/docusign/sample-app-workflows-node",
9898
"createsandbox": "https://go.docusign.com/o/sandbox/",
9999
"learnmore": "https://developers.docusign.com/docs/maestro-api/"
100100
}

client/src/components/Footer/Footer.jsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ const Footer = ({ withContent = true }) => (
66
{withContent && (
77
<section className={styles.container}>
88
<div>
9-
<h2 className={styles.header}>{textContent.hero.footer.title}</h2>
10-
<div className={styles.text}>{textContent.hero.footer.paragraph}</div>
119
</div>
1210
<div className={styles.buttons}>
1311
<a href={textContent.links.createsandbox} rel="noopener noreferrer" target="_blank">
@@ -24,7 +22,6 @@ const Footer = ({ withContent = true }) => (
2422
</div>
2523
</section>
2624
)}
27-
<span className={styles.copyright}>{textContent.hero.footer.copyright}</span>
2825
</footer>
2926
);
3027

0 commit comments

Comments
 (0)