File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1+ {
2+ "python.defaultInterpreterPath" : " ./venv/bin/python"
3+ }
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ Transform your $20 Cursor/Windsurf into a Devin-like experience in one minute! T
17171 . 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- .\p y310 \S cripts\a ctivate
26+ .\v env \S cripts\a ctivate
2727```
2828
29292 . 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
6262PYTHONPATH=. python -m unittest discover tests/
You can’t perform that action at this time.
0 commit comments