Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added instructions for windows #119

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
17 changes: 17 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,23 @@ Commit your changes and push your branch to GitHub:

Submit a pull request through the GitHub website.

```
Windows:
For developing in windows follow the following instructions

1) Download python from microsoft store

2) clone the git repo using command git clone [email protected]:101loop/drf-user.git or fork it and then clone the using the url of fork
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can get rid of this step and refer it to already existing step


3) Run py -m pip install --user virtualenv to install virtualenv library
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
3) Run py -m pip install --user virtualenv to install virtualenv library
3) Run py -m pip install --user virtualenv to install virtualenv library


4) Run Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser

5) After Completing development work. Run command Set-ExecutionPolicy -ExecutionPolicy Undefined -Scope CurrentUser.


Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should have some final conclusion stating what next steps the user should follow.

Note: The command Set execution policy allows execution of remote scripts. Please remove permissions immediately after work to avoid security issues.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@NaveenGokavarapu19 You forgot to close the section using ```

## Code of Conduct

Please note that this project is released with a Contributor
Expand Down