The README currently only shows how to activate the virtual environment using a Unix-style command:
source supabase-py/bin/activate
This does not work on Windows (PowerShell or CMD), which can be confusing for developers trying to set up the project.
It would be helpful to add Windows-specific instructions, such as:
For PowerShell:
.venv\Scripts\activate
For Command Prompt (CMD):
.venv\Scripts\activate.bat
Adding these instructions would make the setup process clearer and more accessible for Windows users.
The README currently only shows how to activate the virtual environment using a Unix-style command:
source supabase-py/bin/activate
This does not work on Windows (PowerShell or CMD), which can be confusing for developers trying to set up the project.
It would be helpful to add Windows-specific instructions, such as:
For PowerShell:
.venv\Scripts\activate
For Command Prompt (CMD):
.venv\Scripts\activate.bat
Adding these instructions would make the setup process clearer and more accessible for Windows users.