We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b05b6 commit 78eccdeCopy full SHA for 78eccde
Makefile
@@ -26,4 +26,5 @@ lock: install
26
@uv lock
27
28
clean:
29
- @rm -rf .venv/ .mypy_cache/ .ruff_cache/
+ @rm -rf .venv/ .mypy_cache/ .ruff_cache/ .pytest_cache/
30
+ @find . -type d -name __pycache__ -exec rm -r {} \+
README.md
@@ -58,7 +58,7 @@ These tests setup and teardown on their own. You can modify them if you want to
58
To run the development server outside of docker:
59
60
```bash
61
-make dev
+make install && source .venv/bin/activate && make dev
62
```
63
64
## Other Scripts
0 commit comments