Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ yarn-error.log*
# local env files
.env*.local
.env
.env.example
#.env.example

# vercel
.vercel
Expand Down
3 changes: 3 additions & 0 deletions .vscode.example/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.defaultInterpreterPath": "./venv/bin/python"
}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ Transform your $20 Cursor/Windsurf into a Devin-like experience in one minute! T
1. Create Python virtual environment:
```bash
# Create a virtual environment in ./py310
python3 -m venv py310
python3 -m venv venv

# Activate the virtual environment
# On Unix/macOS:
source py310/bin/activate
source venv/bin/activate
# On Windows:
.\py310\Scripts\activate
.\venv\Scripts\activate
```

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

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

# Run all tests
PYTHONPATH=. python -m unittest discover tests/
Expand Down