Skip to content

Commit 5e30cf7

Browse files
authored
Merge pull request #64 from docusign/DEVDOCS-16161
Updating sample app name
2 parents 8798044 + 5d19578 commit 5e30cf7

20 files changed

+35
-45
lines changed

README.MD

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Python and React: MyUni Education Sample Application
1+
# Python and React: University Sample Application
22

3-
### Github repo: MyUniSampleApp
3+
### Github repo: University Sample App
44

55
## Introduction
6-
MyUni is a Docusign sample application written in Python 3.7 (server) and React (client). You can find a live instance running at [https://myuni.sampleapps.docusign.com/](https://myuni.sampleapps.docusign.com/).
6+
The University Sample App is a Docusign sample application written in Python 3.7 (server) and React (client). You can find a live instance running at [https://university.sampleapps.docusign.com/](https://university.sampleapps.docusign.com/).
77

8-
MyUni demonstrates the following:
8+
The University Sample App demonstrates the following:
99

1010
1. Authentication with Docusign via [JSON Web Token (JWT) Grant](https://developers.docusign.com/platform/auth/jwt/).
1111
2. **Change Your Major or Minor:** ([Source](./app/api/requests.py))
@@ -48,8 +48,8 @@ MyUni demonstrates the following:
4848

4949
**Manual**
5050

51-
1. Download or clone this repository to your workstation to directory **sample-app-myuni-python**
52-
2. Navigate to that folder: **`cd sample-app-myuni-python`** directory
51+
1. Download or clone this repository to your workstation to directory **sample-app-university-python**
52+
2. Navigate to that folder: **`cd sample-app-university-python`** directory
5353
3. Install python packages **`pip install -r requirements.txt`**
5454
4. Install React dependencies using [npm](https://www.npmjs.com/) package manager **npm install**
5555
5. Update the **.env** file with the integration key and other settings.
@@ -58,8 +58,8 @@ MyUni demonstrates the following:
5858

5959
**Using installation scripts**
6060

61-
1. Download or clone this repository to your workstation in the folder **sample-app-myuni-python**.
62-
2. Navigate to the scripts subfolder: **`cd sample-app-myuni-python/scripts`**
61+
1. Download or clone this repository to your workstation in the folder **sample-app-university-python**.
62+
2. Navigate to the scripts subfolder: **`cd sample-app-university-python/scripts`**
6363
3. Run the installation script: **`./install.sh`**
6464
4. Update the **.env** file with the integration key and other settings.
6565
> **Note:** Protect your integration key and client secret. You should make sure that your **.env** file will not be stored in your source code repository.
@@ -70,11 +70,11 @@ All installation scripts are located in the **scripts** folder.
7070
1. To stop the application, run **`./stop.sh`**
7171
1. To remove the virtual environment and modules, run **`./clean.sh`**
7272

73-
## Running MyUni
73+
## Running the University Sample App
7474

7575
### Manual
7676

77-
1. Navigate to the application folder: **`cd sample-app-myuni-python`**
77+
1. Navigate to the application folder: **`cd sample-app-university-python`**
7878
2. Run the application: **`flask run --port 5001`**
7979
3. Run npm: **`npm start`**
8080
4. Open a browser to **http://localhost:3000**

app/templates/minor-major.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<span class="navbar-brand-image d-inline-block">
161161
<img src="data:image/png;base64,{{ img_base64_src }}" alt="Docusign logo">
162162
</span>
163-
MyUni
163+
University Sample App
164164
</a>
165165
</nav>
166166
</div>

app/templates/multi-sign.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<span class="navbar-brand-image d-inline-block">
161161
<img src="data:image/png;base64,{{ img_base64_src }}" alt="Docusign logo">
162162
</span>
163-
MyUni
163+
University Sample App
164164
</a>
165165
</nav>
166166
</div>

app/templates/payment-activity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
<span class="navbar-brand-image d-inline-block">
166166
<img src="data:image/png;base64,{{ img_base64_src }}" alt="Docusign logo">
167167
</span>
168-
MyUni
168+
University Sample App
169169
</a>
170170
</nav>
171171
</div>

app/templates/transcript.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
<span class="navbar-brand-image d-inline-block">
181181
<img src="data:image/png;base64,{{ img_base64_src }}" alt="Docusign logo">
182182
</span>
183-
MyUni
183+
University Sample App
184184
</a>
185185
</nav>
186186
</div>

public/MyUni_OG.jpg

180 KB
Loading

public/MyUni_OG.png

-10.3 KB
Binary file not shown.

public/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
<meta name="theme-color" content="#000000" />
1515
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1616
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
17-
<title>MyUni Docusign Sample Application</title>
18-
<meta name="description" content="See how the MyUni Docusign sample application for education showcases the capabilities of the Docusign API to enable you to integrate Docusign functionality into your own applications.">
17+
<title>University Sample App</title>
18+
<meta name="description" content="See how the University Sample App showcases the capabilities of the Docusign API to enable you to integrate Docusign functionality into your own applications.">
1919
<meta property="og:type" content="article" />
20-
<meta name="twitter:title" content="MyUni Docusign Sample Application" />
21-
<meta name="twitter:description" content="See how the MyUni Docusign sample application for education showcases the capabilities of the Docusign API to enable you to integrate Docusign functionality into your own applications." />
22-
<meta property="og:title" content="MyUni Docusign Sample Application" />
23-
<meta property="og:description" content="See how the MyUni Docusign sample application for education showcases the capabilities of the Docusign API to enable you to integrate Docusign functionality into your own applications." />
24-
<meta property="og:image" content="%PUBLIC_URL%/MyUni_OG.png" />
20+
<meta name="twitter:title" content="University Sample App" />
21+
<meta name="twitter:description" content="See how the University Sample App showcases the capabilities of the Docusign API to enable you to integrate Docusign functionality into your own applications." />
22+
<meta property="og:title" content="University Sample App" />
23+
<meta property="og:description" content="See how the University Sample App for education showcases the capabilities of the Docusign API to enable you to integrate Docusign functionality into your own applications." />
24+
<meta property="og:image" content="%PUBLIC_URL%/MyUni_OG.jpg" />
2525
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
2626
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Serif&display=swap" rel="stylesheet">
2727
<style>

public/locales/en/About.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"Title": "MyUni Sample App",
2+
"Title": "University Sample App",
33
"Description": "<p>This education-focused Docusign sample application demonstrates some common Docusign API integration workflows built from the Docusign eSignature API, Docusign Click API, Docusign Payments, and Docusign Connect.</p>",
44
"SourceButton": "GitHub Source",
5-
"GitHubLink": " https://github.com/docusign/sample-app-myuni-python",
5+
"GitHubLink": " https://github.com/docusign/sample-app-university-python",
66
"SandboxText": "<h4>Get Started with the Docusign APIs Today</h4>",
77
"SandboxButton": "GET YOUR DEVELOPER ACCOUNT",
88
"Description2": "<p></br>With the Docusign developer account, you can test our APIs for free! Developer accounts do not expire and have enterprise-level features enabled.</p>",
9-
"Features": "<h3>MyUni features:</h3><ul><li>Send document for signature</li><li>Update recipient information</li><li>Embedded signing </li><li>Create an envelope from HTML import</li><li>Real-time status reporting</li><li>Fill tab data</li><li>Create a clickwrap</li><li>Embed a clickwrap on your site</li><li>Calculated (formula) fields</li><liRequest payment</li></ul>",
9+
"Features": "<h3>The University Sample App features:</h3><ul><li>Send document for signature</li><li>Update recipient information</li><li>Embedded signing </li><li>Create an envelope from HTML import</li><li>Real-time status reporting</li><li>Fill tab data</li><li>Create a clickwrap</li><li>Embed a clickwrap on your site</li><li>Calculated (formula) fields</li><liRequest payment</li></ul>",
1010
"ToolsandLinks": "API Tools and Resources",
1111
"DeveloperCenter": "Developer Center",
1212
"DeveloperCenterLink": "https://developers.docusign.com",
@@ -15,6 +15,5 @@
1515
"ESignatureDocumentation": "Docusign eSignature API Reference",
1616
"ESignatureDocumentationLink": "https://developers.docusign.com/docs/esign-rest-api/reference/",
1717
"DeveloperCommunity": "Developer Community",
18-
"DeveloperCommunityLink": "http://stackoverflow.com/questions/tagged/docusignapi",
19-
"AboutDocuSign": "<h3>About Docusign</h3><ul><li>More than 1,000,000 paying customers and over a billion users in over 180 countries</li><li>More than 300,000 new unique users join the Docusign Global Trust Network every day</li><li>83% of Docusign documents are returned within 1 hour, with 50% completed within 15 minutes</li><li>$36 per document savings when you leave paper behind</li> <li>Docusign is available in 44 languages</li></ul>"
18+
"DeveloperCommunityLink": "http://stackoverflow.com/questions/tagged/docusignapi"
2019
}

public/locales/en/Common.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
2-
"ApplicationName": "MyUni",
2+
"ApplicationName": "University Sample App",
33
"TransactionHistoryLink": "Status",
44
"GitHubLink": "GitHub Source",
55
"AboutLink": "About",
6-
"Copyright": "© 2024 Docusign Inc.",
76
"LogOutLink": "Log out",
87
"LogInButton": "Log in",
98
"AlertMessage": "Sorry, there was some issue with the Code Grant Authorization, so you have been logged with JWT authorization"

0 commit comments

Comments
 (0)