Skip to content

Commit be6b897

Browse files
committed
staged review
1 parent e1c0ac4 commit be6b897

9 files changed

+31
-31
lines changed

articles/app-service/app-service-web-tutorial-dotnetcore-sqldb.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ git commit -m "connect to SQLDB in Azure"
226226

227227
[!INCLUDE [app-service-plan-no-h](../../includes/app-service-web-git-push-to-azure-no-h.md)]
228228

229-
```bash
229+
<pre>
230230
Counting objects: 98, done.
231231
Delta compression using up to 8 threads.
232232
Compressing objects: 100% (92/92), done.
@@ -248,9 +248,9 @@ remote: Finished successfully.
248248
remote: Running post deployment command(s)...
249249
remote: Deployment successful.
250250
remote: App container will begin restart within 10 seconds.
251-
To https://<app_name>.scm.azurewebsites.net/<app_name>.git
251+
To https://&lt;app_name&gt;.scm.azurewebsites.net/&lt;app_name&gt;.git
252252
* [new branch] master -> master
253-
```
253+
</pre>
254254

255255
### Browse to the Azure app
256256

articles/app-service/app-service-web-tutorial-nodejs-mongodb-app.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ npm start
8383

8484
When the app is fully loaded, you see something similar to the following message:
8585

86-
```console
86+
<pre>
8787
--
8888
MEAN.JS - Development Environment
8989

@@ -93,7 +93,7 @@ Database: mongodb://localhost/mean-dev
9393
App version: 0.5.0
9494
MEAN.JS version: 0.5.0
9595
--
96-
```
96+
</pre>
9797

9898
Navigate to `http://localhost:3000` in a browser. Click **Sign Up** in the top menu and create a test user.
9999

@@ -221,16 +221,16 @@ node server.js
221221

222222
When the app is loaded, check to make sure that it's running in the production environment:
223223

224-
```console
224+
<pre>
225225
--
226226
MEAN.JS
227227

228228
Environment: production
229229
Server: http://0.0.0.0:8443
230-
Database: mongodb://<cosmosdb_name>:<primary_master_key>@<cosmosdb_name>.documents.azure.com:10250/mean?ssl=true&sslverifycertificate=false
230+
Database: mongodb://&lt;cosmosdb_name&gt;:&lt;primary_master_key&gt;@&lt;cosmosdb_name&gt;.documents.azure.com:10250/mean?ssl=true&sslverifycertificate=false
231231
App version: 0.5.0
232232
MEAN.JS version: 0.5.0
233-
```
233+
</pre>
234234

235235
Navigate to `http://localhost:8443` in a browser. Click **Sign Up** in the top menu and create a test user. If you are successful creating a user and signing in, then your app is writing data to the Cosmos DB database in Azure.
236236

@@ -280,7 +280,7 @@ db: {
280280

281281
[!INCLUDE [app-service-plan-no-h](../../includes/app-service-web-git-push-to-azure-no-h.md)]
282282

283-
```bash
283+
<pre>
284284
Counting objects: 5, done.
285285
Delta compression using up to 4 threads.
286286
Compressing objects: 100% (5/5), done.
@@ -296,9 +296,9 @@ remote: Handling node.js deployment.
296296
.
297297
.
298298
remote: Deployment successful.
299-
To https://<app_name>.scm.azurewebsites.net/<app_name>.git
299+
To https://&lt;app_name&gt;.scm.azurewebsites.net/&lt;app_name&gt;.git
300300
* [new branch]      master -> master
301-
```
301+
</pre>
302302

303303
You may notice that the deployment process runs [Gulp](https://gulpjs.com/) after `npm install`. App Service does not run Gulp or Grunt tasks during deployment, so this sample repository has two additional files in its root directory to enable it:
304304

articles/app-service/app-service-web-tutorial-php-mysql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ By default, Azure App Service points the root virtual application path (_/_) to
396396

397397
[!INCLUDE [app-service-plan-no-h](../../includes/app-service-web-git-push-to-azure-no-h.md)]
398398

399-
```bash
399+
<pre>
400400
Counting objects: 3, done.
401401
Delta compression using up to 8 threads.
402402
Compressing objects: 100% (3/3), done.
@@ -408,8 +408,8 @@ remote: Preparing deployment for commit id 'a5e076db9c'.
408408
remote: Running custom deployment command...
409409
remote: Running deployment command...
410410
...
411-
< Output has been truncated for readability >
412-
```
411+
&lt; Output has been truncated for readability &gt;
412+
</pre>
413413

414414
> [!NOTE]
415415
> You may notice that the deployment process installs [Composer](https://getcomposer.org/) packages at the end. App Service does not run these automations during default deployment, so this sample repository has three additional files in its root directory to enable it:

articles/app-service/app-service-web-tutorial-rest-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ In this step, you deploy your SQL Database-connected .NET Core application to Ap
9292

9393
[!INCLUDE [app-service-plan-no-h](../../includes/app-service-web-git-push-to-azure-no-h.md)]
9494

95-
```bash
95+
<pre>
9696
Counting objects: 98, done.
9797
Delta compression using up to 8 threads.
9898
Compressing objects: 100% (92/92), done.
@@ -114,9 +114,9 @@ remote: Finished successfully.
114114
remote: Running post deployment command(s)...
115115
remote: Deployment successful.
116116
remote: App container will begin restart within 10 seconds.
117-
To https://<app_name>.scm.azurewebsites.net/<app_name>.git
117+
To https://&lt;app_name&gt;.scm.azurewebsites.net/&lt;app_name&gt;.git
118118
* [new branch] master -> master
119-
```
119+
</pre>
120120

121121
### Browse to the Azure app
122122

articles/app-service/containers/tutorial-dotnetcore-sqldb-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ git commit -m "connect to SQLDB in Azure"
218218

219219
[!INCLUDE [app-service-plan-no-h](../../../includes/app-service-web-git-push-to-azure-no-h.md)]
220220

221-
```bash
221+
<pre>
222222
Counting objects: 98, done.
223223
Delta compression using up to 8 threads.
224224
Compressing objects: 100% (92/92), done.
@@ -240,9 +240,9 @@ remote: Finished successfully.
240240
remote: Running post deployment command(s)...
241241
remote: Deployment successful.
242242
remote: App container will begin restart within 10 seconds.
243-
To https://<app-name>.scm.azurewebsites.net/<app-name>.git
243+
To https://&lt;app-name&gt;.scm.azurewebsites.net/&lt;app-name&gt;.git
244244
* [new branch] master -> master
245-
```
245+
</pre>
246246

247247
### Browse to the Azure app
248248

articles/app-service/containers/tutorial-nodejs-mongodb-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ db: {
265265

266266
[!INCLUDE [app-service-plan-no-h](../../../includes/app-service-web-git-push-to-azure-no-h.md)]
267267

268-
```bash
268+
<pre>
269269
Counting objects: 5, done.
270270
Delta compression using up to 4 threads.
271271
Compressing objects: 100% (5/5), done.
@@ -281,9 +281,9 @@ remote: Handling node.js deployment.
281281
.
282282
.
283283
remote: Deployment successful.
284-
To https://<app-name>.scm.azurewebsites.net/<app-name>.git
284+
To https://&lt;app-name&gt;.scm.azurewebsites.net/&lt;app-name&gt;.git
285285
* [new branch]      master -> master
286-
```
286+
</pre>
287287

288288
You may notice that the deployment process runs [Gulp](https://gulpjs.com/) after `npm install`. App Service does not run Gulp or Grunt tasks during deployment, so this sample repository has two additional files in its root directory to enable it:
289289

articles/app-service/containers/tutorial-php-mysql-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ git push azure master
383383

384384
During deployment, Azure App Service communicates its progress with Git.
385385

386-
```bash
386+
<pre>
387387
Counting objects: 3, done.
388388
Delta compression using up to 8 threads.
389389
Compressing objects: 100% (3/3), done.
@@ -395,8 +395,8 @@ remote: Preparing deployment for commit id 'a5e076db9c'.
395395
remote: Running custom deployment command...
396396
remote: Running deployment command...
397397
...
398-
< Output has been truncated for readability >
399-
```
398+
&lt; Output has been truncated for readability &gt;
399+
</pre>
400400

401401
<!-- > [!NOTE]
402402
> You may notice that the deployment process installs [Composer](https://getcomposer.org/) packages at the end. App Service does not run these automations during default deployment, so this sample repository has three additional files in its root directory to enable it:

articles/app-service/containers/tutorial-python-postgresql-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,8 @@ Because you made changes to the data model, you need to rerun database migration
360360
```
361361
cd site/wwwroot
362362

363-
# Activate the virtual environment
364-
source venv/bin/activate
363+
# Activate default virtual environment in App Service container
364+
source /antenv/bin/activate
365365
# Run database migrations
366366
python manage.py migrate
367367
```

articles/app-service/containers/tutorial-ruby-postgres-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ git push azure master
330330

331331
During deployment, Azure App Service communicates its progress with Git.
332332

333-
```bash
333+
<pre>
334334
Counting objects: 3, done.
335335
Delta compression using up to 8 threads.
336336
Compressing objects: 100% (3/3), done.
@@ -342,8 +342,8 @@ remote: Preparing deployment for commit id 'a5e076db9c'.
342342
remote: Running custom deployment command...
343343
remote: Running deployment command...
344344
...
345-
< Output has been truncated for readability >
346-
```
345+
&lt; Output has been truncated for readability &gt;
346+
</pre>
347347

348348
### Browse to the Azure app
349349

0 commit comments

Comments
 (0)