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
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,37 +178,37 @@ The following softwares are required:
178
178
179
179
### Preparation
180
180
181
-
1.Downlad the source code.
181
+
1.Download the source code.
182
182
183
183
2. Replace `/webjobs/sync_data/app_only_cert.pfx` with your certificate if you plan to use yours.
184
184
185
-
3. Start you local MySQL and create a new database **edu**:
185
+
3. Start your local MySQL and create a new database **edu**:
186
186
187
187
```mysql
188
188
CREATESCHEMA `edu` ;
189
189
```
190
190
191
191
4. Configure the following **environment variables**:
192
192
193
-
-**ClientId**: use the Client Id of the app registration you created earlier.
193
+
-**ClientId**: the Client Id of the app registration you created earlier.
194
194
195
-
-**ClientSecret**: use the Key value of the app registration you created earlier.
195
+
-**ClientSecret**: the Key value of the app registration you created earlier.
196
196
197
-
-**ClientCertificatePath**: path of the certificate. Please use the default value: `app_only_cert.pfx`
197
+
-**ClientCertificatePath**: the path of the certificate. Please use the default value: `app_only_cert.pfx`
198
198
199
-
-**ClientCertificatePassword**: password of the certifcate.
199
+
-**ClientCertificatePassword**: the password of the certifcate.
200
200
201
201
> Note: the **ClientCertificatePath** and **ClientCertificatePassword** variables are only required by the WebJob.
202
202
203
-
-**SourceCodeRepositoryURL**: use the URL of this repository.
203
+
-**SourceCodeRepositoryURL**: the URL of this repository.
204
204
205
-
-**MySQLHost**/**MySQLPort**: host and port of the MySQL server.
205
+
-**MySQLHost**/**MySQLPort**: the host and port of the MySQL server.
206
206
207
-
-**MySQLUser**/**MySQLPassword**: user and password of the MySQL server.
207
+
-**MySQLUser**/**MySQLPassword**: the user and password of the MySQL server.
208
208
209
209
### Run the web app
210
210
211
-
1. Open terminal and navigate to the source code folder. Execute the command below:
211
+
1. Open the terminal and navigate to the source code folder. Execute the command below:
212
212
213
213
```sh
214
214
pip install -r requirements.txt
@@ -424,7 +424,7 @@ For more information, see [Build a multi-tenant SaaS web application using Azure
424
424
425
425
**SyncData WebJob**
426
426
427
-
The sync data WebJob is a standalone Python app. It is located in `/webjobs/sync_data` folder and will be deployed to `/App_Data/jobs/triggered/` folder of the Web App after the deployemnt.
427
+
The sync data WebJob is a standalone Python app. It is located in `/webjobs/sync_data` folder and will be deployed to `/App_Data/jobs/triggered/` folder of the Web App after the deployment.
428
428
429
429
This app was created to demonstrate differential query. Please check [Differential query](differential-query) section for more details.
0 commit comments