Skip to content

Commit 1571942

Browse files
Merge pull request #236139 from msaenzbosupport/patch-15
[Doc-a-Thon]Updating code block
2 parents 073ac91 + dce90be commit 1571942

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/active-directory-b2c/enable-authentication-python-web-app.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,22 @@ This article uses [Python 3.9+](https://www.python.org/) and [Flask 2.1](https:/
4444

4545
# [macOS](#tab/macos)
4646

47-
```bash
47+
```zsh
4848
python3 -m venv .venv
4949
source .venv/bin/activate
5050
```
5151

5252
# [Windows](#tab/windows)
5353

54-
```bash
54+
```cmd
5555
py -3 -m venv .venv
5656
.venv\scripts\activate
5757
```
5858
---
5959

6060
1. Update pip in the virtual environment by running the following command in the terminal:
6161

62-
```bash
62+
```
6363
python -m pip install --upgrade pip
6464
```
6565

@@ -73,13 +73,13 @@ This article uses [Python 3.9+](https://www.python.org/) and [Flask 2.1](https:/
7373

7474
# [macOS](#tab/macos)
7575

76-
```bash
76+
```zsh
7777
export FLASK_ENV=development
7878
```
7979

8080
# [Windows](#tab/windows)
8181

82-
```bash
82+
```cmd
8383
set FLASK_ENV=development
8484
```
8585
---
@@ -111,13 +111,13 @@ python -m pip install -r requirements.txt
111111

112112
# [macOS](#tab/macos)
113113

114-
```bash
114+
```zsh
115115
python -m pip install -r requirements.txt
116116
```
117117

118118
# [Windows](#tab/windows)
119119

120-
```bash
120+
```cmd
121121
py -m pip install -r requirements.txt
122122
```
123123

@@ -426,13 +426,13 @@ python -m flask run --host localhost --port 5000
426426
427427
# [macOS](#tab/macos)
428428
429-
```bash
429+
```zsh
430430
python -m flask run --host localhost --port 5000
431431
```
432432
433433
# [Windows](#tab/windows)
434434
435-
```bash
435+
```cmd
436436
py -m flask run --host localhost --port 5000
437437
```
438438

0 commit comments

Comments
 (0)