Skip to content

Commit 64a2f9c

Browse files
jdanhutchvjik
andauthored
Update creating-project.md (#363)
Co-authored-by: Sergei Predvoditelev <sergei@predvoditelev.ru>
1 parent 598e9f3 commit 64a2f9c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/guide/start/creating-project.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,20 @@ Go into the newly created directory and run:
4646
APP_ENV=dev ./yii serve --port=80
4747
```
4848

49+
For Windows Command Prompt users, run:
50+
51+
```cmd
52+
set APP_ENV=dev
53+
yii serve --port=80
54+
```
55+
56+
For Windows PowerShell users, run:
57+
58+
```powershell
59+
$env:APP_ENV = "dev"
60+
.\yii serve --port=80
61+
```
62+
4963
For Docker users, run:
5064

5165
```sh

0 commit comments

Comments
 (0)