Skip to content

Commit 115e20a

Browse files
committed
Update contributing guide for virtual environment setup and dependency installation
1 parent 02e24a7 commit 115e20a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,31 @@ cd github-dlr
2020

2121
Use the commands
2222

23+
Create a virtual environment using uv
2324
```bash
24-
# Create a virtual environment using uv
2525
uv venv
26+
```
2627

27-
# Activate the virtual environment
28-
source .venv/bin/activate.fish
28+
Activate the virtual environment
29+
```bash
30+
source .venv/bin/activate
2931
```
3032

3133
And you can deactivate the virtual environment with:
32-
3334
```bash
3435
deactivate
3536
```
3637

3738
### 3. Install Dependencies
3839

3940
Install all dependencies including development dependencies:
40-
4141
```bash
42-
uv sync --group dev
42+
uv sync
4343
```
4444

4545
### 4. Verify Installation
4646

4747
Test that the installation works by running the CLI:
48-
4948
```bash
5049
uv run github-dlr --help
5150
```

0 commit comments

Comments
 (0)