Skip to content

Commit

Permalink
Updated requirements generation examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcinnestaylor committed Feb 23, 2024
1 parent 0513e46 commit b9e56ef
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,29 @@ NOTE: In order to monitor the debug logs, as well as view any emails the system

### Initialize Virtual Environment

Ensure the `Pipfile` is in your working directory.
```
# Programming-Contest-Suite/
pipenv install
pipenv install
```

### Update `requirements.txt`

#### Production

pipenv requirements > requirements.txt
```
# Programming-Contest-Suite/
pipenv requirements > requirements.txt
```

#### Development

pipenv requirements --dev requirements-dev.txt
```
# Programming-Contest-Suite/
pipenv requirements --dev > requirements-dev.txt
```

## Documentation

Expand Down

0 comments on commit b9e56ef

Please sign in to comment.