Compare commits

...
2 Commits
Author SHA1 Message Date
Rafael Bradley 36690c95ab Add .env to live reload parameters in documentation 2026-07-24 19:34:14 -03:00
Rafael Bradley d3bb1dc366 Update uvicorn command in README
Added .env to the reload include options for uvicorn.
2026-07-24 19:33:53 -03:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -445,7 +445,7 @@ your now-renamed source code folder.
To start the server, run:
```sh
$ uv run uvicorn project:app --reload --reload-include "docs/**/*.md"
$ uv run uvicorn project:app --reload --reload-include "docs/**/*.md" --reload-include .env
```
`project` is your import name.
+1 -1
View File
@@ -2,5 +2,5 @@ To run the project with live reload including the documentation, run uvicorn wit
parameters:
```sh
uv run uvicorn project:app --reload --reload-include "docs/**/*.md"
uv run uvicorn project:app --reload --reload-include "docs/**/*.md" --reload-include .env
```