Skip to content

Commit e547c96

Browse files
authored
chore: Update activation commands in README.md (#18)
- Update activation commands in README.md - Uncomment .env.example in .gitignore
1 parent 77dcef9 commit e547c96

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ yarn-error.log*
2828
# local env files
2929
.env*.local
3030
.env
31-
.env.example
31+
#.env.example
3232

3333
# vercel
3434
.vercel

.vscode.example/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.defaultInterpreterPath": "./venv/bin/python"
3+
}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Transform your $20 Cursor/Windsurf into a Devin-like experience in one minute! T
1717
1. Create Python virtual environment:
1818
```bash
1919
# Create a virtual environment in ./py310
20-
python3 -m venv py310
20+
python3 -m venv venv
2121

2222
# Activate the virtual environment
2323
# On Unix/macOS:
24-
source py310/bin/activate
24+
source venv/bin/activate
2525
# On Windows:
26-
.\py310\Scripts\activate
26+
.\venv\Scripts\activate
2727
```
2828

2929
2. Configure environment variables:
@@ -56,7 +56,7 @@ The project includes comprehensive unit tests for all tools. To run the tests:
5656

5757
```bash
5858
# Make sure you're in the virtual environment
59-
source py310/bin/activate # On Windows: .\py310\Scripts\activate
59+
source venv/bin/activate # On Windows: .\py310\Scripts\activate
6060

6161
# Run all tests
6262
PYTHONPATH=. python -m unittest discover tests/

0 commit comments

Comments
 (0)