Skip to content

Commit 78eccde

Browse files
committed
doc: clarification around running outside docker
1 parent 32b05b6 commit 78eccde

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ lock: install
2626
@uv lock
2727

2828
clean:
29-
@rm -rf .venv/ .mypy_cache/ .ruff_cache/
29+
@rm -rf .venv/ .mypy_cache/ .ruff_cache/ .pytest_cache/
30+
@find . -type d -name __pycache__ -exec rm -r {} \+

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ These tests setup and teardown on their own. You can modify them if you want to
5858
To run the development server outside of docker:
5959

6060
```bash
61-
make dev
61+
make install && source .venv/bin/activate && make dev
6262
```
6363

6464
## Other Scripts

0 commit comments

Comments
 (0)