diff --git a/src/guide/start/creating-project.md b/src/guide/start/creating-project.md index c46dff2a..6015caa9 100644 --- a/src/guide/start/creating-project.md +++ b/src/guide/start/creating-project.md @@ -46,6 +46,20 @@ Go into the newly created directory and run: APP_ENV=dev ./yii serve --port=80 ``` +For Windows Command Prompt users, run: + +```cmd +set APP_ENV=dev +yii serve --port=80 +``` + +For Windows PowerShell users, run: + +```powershell +$env:APP_ENV = "dev" +.\yii serve --port=80 +``` + For Docker users, run: ```sh