Skip to content

Commit

Permalink
Merge pull request #1176 from shiv-aay/develop
Browse files Browse the repository at this point in the history
step of activating the virtual environment added
  • Loading branch information
gorkemarslan authored Oct 29, 2021
2 parents d067557 + 0bff74f commit f0672ed
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,28 @@ The following sections describe how to set up a development environment. Note, w

To install all required modules, complete the following steps:

1. make sure you are in the repository root directory
2. create a Python 3.7+ virtual environment (named `env`)
* `python -m venv env`
3. use the following command in project dir:
* `pip install -r requirements/dev.txt`
4. change into project directory
* `cd project`
1. Make sure you are in the repository root directory
2. Create a Python 3.7+ virtual environment (named `env`)
```
python -m venv env
```
3. Activate the virtual environment using:
* For Windows users:
```
.\env\Scripts\activate
```
* For MacOS and Linux users:
```
source env/bin/activate
```
4. Use the following command in project dir:
```
pip install -r requirements/dev.txt
```
5. Change into project directory
```
cd project
```


### Run migrations
Expand Down

0 comments on commit f0672ed

Please sign in to comment.