Skip to content

Commit a0cf623

Browse files
jope-bmclaude
andauthored
docs: improve virtual environment setup instructions (#222)
Co-authored-by: Claude <noreply@anthropic.com>
1 parent 473f70c commit a0cf623

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

CONTRIBUTING.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ project and how to get started as a developer.
2727

2828
> **Note**: Basic Memory uses [just](https://just.systems) as a modern command runner. Install with `brew install just` or `cargo install just`.
2929
30-
3. **Run the Tests**:
30+
3. **Activate the Virtual Environment**
31+
```bash
32+
source .venv/bin/activate
33+
```
34+
35+
4. **Run the Tests**:
3136
```bash
3237
# Run all tests
3338
just test

justfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# Install dependencies
44
install:
55
pip install -e ".[dev]"
6+
uv sync
7+
@echo ""
8+
@echo "💡 Remember to activate the virtual environment by running: source .venv/bin/activate"
69

710
# Run unit tests in parallel
811
test-unit:

0 commit comments

Comments
 (0)