Skip to content

Commit 7bcebdd

Browse files
committed
Add missing uv run statements to README.md
1 parent 9bb6e68 commit 7bcebdd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ Follow these steps to set up the application locally:
2020
2. **Install pre-commis hooks**
2121

2222
```bash
23-
pre-commit install
23+
uv run pre-commit install
2424
```
2525

2626
3. **(Optional) Execute hooks on all files:**
2727

2828
```bash
29-
pre-commit run --all-files
29+
uv run pre-commit run --all-files
3030
```
3131

3232
4. **Migrate the Database**
3333

3434
```bash
35-
python manage.py migrate
35+
uv run python manage.py migrate
3636
```
3737

3838
5. **Load Fixtures**
3939

4040
```bash
41-
python manage.py loaddata fixtures/*.yaml
41+
uv run python manage.py loaddata fixtures/*.yaml
4242
```
4343

4444
6. **Run the Development Server**

0 commit comments

Comments
 (0)