You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/docs/release-notes.md
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,34 @@ hide:
14
14
* ✨ Add FastAPI CLI, the new `fastapi` command. PR [#11522](https://github.com/tiangolo/fastapi/pull/11522) by [@tiangolo](https://github.com/tiangolo).
15
15
* New docs: [FastAPI CLI](https://fastapi.tiangolo.com/fastapi-cli/).
16
16
17
+
Try it out with:
18
+
19
+
```console
20
+
$ pip install --upgrade fastapi
21
+
22
+
$ fastapi dev main.py
23
+
24
+
25
+
╭────────── FastAPI CLI - Development mode ───────────╮
26
+
│ │
27
+
│ Serving at: http://127.0.0.1:8000 │
28
+
│ │
29
+
│ API docs: http://127.0.0.1:8000/docs │
30
+
│ │
31
+
│ Running in development mode, for production use: │
INFO: Will watch for changes in these directories: ['/home/user/code/awesomeapp']
38
+
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
39
+
INFO: Started reloader process [2248755] using WatchFiles
40
+
INFO: Started server process [2248757]
41
+
INFO: Waiting for application startup.
42
+
INFO: Application startup complete.
43
+
```
44
+
17
45
### Refactors
18
46
19
47
* 🔧 Add configs and setup for `fastapi-slim` including optional extras `fastapi-slim[standard]`, and `fastapi` including by default the same `standard` extras. PR [#11503](https://github.com/tiangolo/fastapi/pull/11503) by [@tiangolo](https://github.com/tiangolo).
0 commit comments