Skip to content

Commit cbb8147

Browse files
committed
Fix uv run syntax in README
1 parent f9094da commit cbb8147

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ $ uv venv
4343
- run migrations initialization with db init command:
4444

4545
```
46-
$ uv pip run alembic init migrations
46+
$ uv run alembic init migrations
4747
$ cp env.py migrations
48-
$ uv pip run alembic revision --autogenerate -m "Initial migration"
49-
$ uv pip run alembic upgrade head
48+
$ uv run alembic revision --autogenerate -m "Initial migration"
49+
$ uv run alembic upgrade head
5050
```
5151

5252
- There will be 3 tables, "users", "books", and "authors" created in the PostgreSQL database "library" after the `upgrade`.
@@ -58,7 +58,7 @@ $ uv venv
5858
- HomeController
5959
- FibonacciController
6060
```
61-
$ uv pip run pytest -v
61+
$ uv run pytest -v
6262
$ python -m pytest
6363
```
6464

0 commit comments

Comments
 (0)