diff --git a/.gitignore b/.gitignore index bd36c75..3101db2 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ yarn-error.log* # local env files .env*.local .env -.env.example +#.env.example # vercel .vercel diff --git a/.vscode.example/settings.json b/.vscode.example/settings.json new file mode 100644 index 0000000..6710f74 --- /dev/null +++ b/.vscode.example/settings.json @@ -0,0 +1,3 @@ +{ + "python.defaultInterpreterPath": "./venv/bin/python" +} diff --git a/README.md b/README.md index 134f12b..9fedbf7 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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/