We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
uv run
1 parent 9bb6e68 commit 7bcebddCopy full SHA for 7bcebdd
README.md
@@ -20,25 +20,25 @@ Follow these steps to set up the application locally:
20
2. **Install pre-commis hooks**
21
22
```bash
23
- pre-commit install
+ uv run pre-commit install
24
```
25
26
3. **(Optional) Execute hooks on all files:**
27
28
29
- pre-commit run --all-files
+ uv run pre-commit run --all-files
30
31
32
4. **Migrate the Database**
33
34
35
- python manage.py migrate
+ uv run python manage.py migrate
36
37
38
5. **Load Fixtures**
39
40
41
- python manage.py loaddata fixtures/*.yaml
+ uv run python manage.py loaddata fixtures/*.yaml
42
43
44
6. **Run the Development Server**
0 commit comments