From bdbdf2269d766a311baefc4d87afd1094d161e99 Mon Sep 17 00:00:00 2001 From: jdanhutch <55817976+jdanhutch@users.noreply.github.com> Date: Tue, 27 Jan 2026 22:46:47 -0700 Subject: [PATCH] Update creating-project.md Add instructions for serving the project using Windows Command Prompt and Windows PowerShell. --- src/guide/start/creating-project.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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