From 408c210300aca2c0ef9ef4965bde5cf77e02bad1 Mon Sep 17 00:00:00 2001
From: holts-shoe <21085160+holts-shoe@users.noreply.github.com>
Date: Thu, 6 Mar 2025 16:27:58 -0500
Subject: [PATCH] Update first-steps.md
Add termy tab for windows users to make it easier to run fastapi for the first time
---
docs/en/docs/tutorial/first-steps.md | 48 ++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/docs/en/docs/tutorial/first-steps.md b/docs/en/docs/tutorial/first-steps.md
index 4f1b1f116..332ef9f6e 100644
--- a/docs/en/docs/tutorial/first-steps.md
+++ b/docs/en/docs/tutorial/first-steps.md
@@ -8,6 +8,10 @@ Copy that to a file `main.py`.
Run the live server:
+////
+
+//// tab | Linux, macOS
+
```console
@@ -48,6 +52,50 @@ $ fastapi dev
+
+```console
+$ py -m fastapi dev main.py
+
+ FastAPI Starting development server 🚀
+
+ Searching for package file structure from directories
+ with __init__.py files
+ Importing from C:\Users\code\awesomeapp
+
+ module 🐍 main.py
+
+ code Importing the FastAPI app object from the module with
+ the following code:
+
+ from main import app
+
+ app Using import string: main:app
+
+ server Server started at http://127.0.0.1:8000
+ server Documentation at http://127.0.0.1:8000/docs
+
+ tip Running in development mode, for production use:
+ fastapi run
+
+ Logs:
+
+ INFO Will watch for changes in these directories:
+ ['C:\\Users\\code\\awesomeapp']
+ INFO Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C
+ to quit)
+ INFO Started reloader process [383138] using WatchFiles
+ INFO Started server process [383153]
+ INFO Waiting for application startup.
+ INFO Application startup complete.
+```
+
+
+
In the output, there's a line with something like:
```hl_lines="4"