Skip to content

Commit a43f258

Browse files
committed
naming changes
1 parent 651193d commit a43f258

File tree

15 files changed

+35
-35
lines changed

15 files changed

+35
-35
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ NODE_ENV=development # Set to "production" so server serves static assets
44

55
### Client Variables
66
FRONTEND_DEV_HOST=http://localhost:3000
7-
FRONTEND_PROD_HOST=https://mymaestro.azurewebsites.net
7+
FRONTEND_PROD_HOST=https://maestro.azurewebsites.net
88

99
### Server Variables
1010
BACKEND_DEV_HOST=http://localhost:4000/api
11-
BACKEND_PROD_HOST=https://mymaestro.azurewebsites.net/api
11+
BACKEND_PROD_HOST=https://maestro.azurewebsites.net/api
1212
JWT_REDIRECT_URI=https://developers.docusign.com/platform/auth/consent # Where the user will be redirected after providing consent for JWT.
1313
DS_OAUTH_SERVER=https://account-d.docusign.com # The Docusign authentication server, used for JWT.
1414
USER_ID={YOUR_USER_ID} # A GUID unique to each user's Docusign Account, located on the Apps and Keys page.

README.md

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

33
## Introduction
44

5-
Welcome to the MyMaestro sample app! MyMaestro 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 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.
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

@@ -20,7 +20,7 @@ Before you can run this sample app on your local machine, you must first create
2020
- Save the **integration key** and **private RSA key pair** somewhere safe as you will need these later.
2121
5. Add redirect URIs for your app. There are several variables from the **.env** file that are used in the code and configured for redirect urls. Find variables below in the **.env** file and add the values of these variables in the Docusign account settings in the appropriate **Redirect URIs** section:
2222
- FRONTEND_DEV_HOST (http://localhost:3000)
23-
- FRONTEND_PROD_HOST (https://mymaestro.azurewebsites.net)
23+
- FRONTEND_PROD_HOST (https://maestro.azurewebsites.net)
2424
- JWT_REDIRECT_URI (https://developers.docusign.com/platform/auth/consent)
2525

2626
If you run this project in Docker using the **docker-compose.local.yml** file, the variable FRONTEND_DEV_HOST there changes to the value **http://localhost:80**. Keep in mind that in this case this value will also have to be added to the **Redirect URIs** section.
@@ -35,8 +35,8 @@ If you run this project in Docker using the **docker-compose.local.yml** file, t
3535

3636
### Install dependencies locally
3737

38-
1. Download or clone this repository to your workstation in a new folder named **sample-app-mymaestro-node**.
39-
2. Navigate to that folder: **`cd sample-app-mymaestro-node`**
38+
1. Download or clone this repository to your workstation in a new folder named **sample-app-maestro-node**.
39+
2. Navigate to that folder: **`cd sample-app-maestro-node`**
4040
3. Navigate to the **client** folder: **`cd client`**
4141
4. Install dependencies using the [npm](https://www.npmjs.com/) package manager: **`npm install`**
4242
5. Navigate to the **server** folder: **`cd ../server`**
@@ -45,20 +45,20 @@ If you run this project in Docker using the **docker-compose.local.yml** file, t
4545
> **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.
4646
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.
4747

48-
## Running MyMaestro in development mode
48+
## Running the Maestro Sample App in development mode
4949

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

57-
## Running MyMaestro in Docker
57+
## Running the Maestro Sample App in Docker
5858

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

61-
1. Navigate to the application folder: **`cd sample-app-mymaestro-node`**
61+
1. Navigate to the application folder: **`cd sample-app-maestro-node`**
6262
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.
6363
3. Run **`docker-compose -f docker-compose.local.yaml up -d`**
6464
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-
# MyMaestro Frontend
1+
# Maestro 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-
- [MyMaestro Frontend](#mymaestro-frontend)
9+
- [Maestro 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="MyMaestro Sample App" />
7-
<meta property="og:description" content="Leverage the power of Docusign workflows with Maestro. MyMaestro 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="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." />
88
<meta property="og:image" content="%PUBLIC_URL%/src/assets/img/og-image.jpg" />
9-
<title>MyMaestro</title>
9+
<title>Maestro 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"hero": {
3-
"title": "Welcome to the MyMaestro Sample App",
3+
"title": "Welcome to the Maestro Sample App",
44
"paragraph": "Discover the power of the Docusign Maestro API (beta). Create, trigger, and manage Maestro workflows in an interactive environment.",
55
"tryButton": "Try the App",
66
"GitHub": "Go to GitHub",
@@ -133,7 +133,7 @@
133133
"backHome": "← Back to home"
134134
},
135135
"links": {
136-
"github": "https://github.com/docusign/sample-app-mymaestro-node",
136+
"github": "https://github.com/docusign/sample-app-maestro-node",
137137
"createsandbox": "https://go.docusign.com/o/sandbox/",
138138
"learnmore": "https://developers.docusign.com/docs/maestro-api/"
139139
}

client/src/constants.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ export const WorkflowStatus = {
2424
};
2525

2626
export const TemplateType = {
27-
I9: { name: 'MyMaestro: I-9', type: 'I-9 document' },
28-
OFFER: { name: 'MyMaestro: Offer Letter', type: 'Offer letter' },
29-
NDA: { name: 'MyMaestro: NDA', type: 'NDA document' },
27+
I9: { name: 'Maestro: I-9', type: 'I-9 document' },
28+
OFFER: { name: 'Maestro: Offer Letter', type: 'Offer letter' },
29+
NDA: { name: 'Maestro: NDA', type: 'NDA document' },
3030
};
3131

3232
export const WorkflowOptions = [

docker-compose.deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.9"
22
services:
33
frontend:
44
container_name: nginx-frontend-app
5-
image: dssaregistry.azurecr.io/mymaestro:frontlatest
5+
image: dssaregistry.azurecr.io/maestro:frontlatest
66
restart: always
77
build:
88
context: .
@@ -17,7 +17,7 @@ services:
1717

1818
backend:
1919
container_name: node-app
20-
image: dssaregistry.azurecr.io/mymaestro:backlatest
20+
image: dssaregistry.azurecr.io/maestro:backlatest
2121
restart: always
2222
build:
2323
context: .

docker-compose.local.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.9"
22
services:
33
frontend:
44
container_name: nginx-frontend-app
5-
image: mymaestro_frontend
5+
image: maestro_frontend
66
restart: always
77
build:
88
context: .
@@ -22,7 +22,7 @@ services:
2222

2323
backend:
2424
container_name: node-app
25-
image: mymaestro_backend
25+
image: maestro_backend
2626
restart: always
2727
build:
2828
context: .

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sample-app-mymaestro-node",
2+
"name": "sample-app-maestro-node",
33
"version": "1.0.0",
44
"private": true,
55
"scripts": {

server/assets/templates/I9.template.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)