Document env file option in uv

This commit is contained in:
Tobias Kunze 2025-03-23 00:02:31 +01:00
parent 6dd52cea03
commit 832763cb2a

View file

@ -29,8 +29,8 @@ Then use ``uv`` to install the project and run its commands while youre devel
```bash
uv sync --dev
uv run src/manage.py migrate
uv run src/manage.py runserver
uv run --env-file=.env src/manage.py migrate
uv run --env-file=.env src/manage.py runserver
```
This will start the development server on http://localhost:8000.