Skip to content

Commit

Permalink
Update README_dev.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jellepoland authored Oct 8, 2024
1 parent e4b166b commit 51ebd42
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions README_dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,16 @@ Hi! Welcome to this Python Template, this `README_dev.md` contains instructions
```
11. Activate the virtual environment; this should result in a (venv) in your terminal, indicating the virtual environment is active. Tip: for proper dependency management, one should **always activate the venv before coding**.

- Linux / macOS
```bash
# linux
source venv/bin/activate
```

- Windows (Command Prompt)
```bash
# Windows (Command Prompt)
venv\Scripts\activate
```

- Windows (PowerShell)
```bash
# Windows (PowerShell)
.\venv\Scripts\Activate
```

Expand Down Expand Up @@ -75,8 +72,17 @@ Hi! Welcome to this Python Template, this `README_dev.md` contains instructions
### Steps for implementing a new feature
1. First navigate to repository locally and activate virtual environment
```bash
# linux
source venv/bin/activate
```
```bash
# Windows (Command Prompt)
venv\Scripts\activate
```
```bash
# Windows (PowerShell)
.\venv\Scripts\Activate
```
2. Create an issue on GitHub
3. Create a branch from this issue and change the branch source to `develop`
4. Use the provided GitHub commands to checkout this branch locally
Expand Down

0 comments on commit 51ebd42

Please sign in to comment.