Skip to content

Commit

Permalink
Fix inaccurate instruction
Browse files Browse the repository at this point in the history
The command pipenv sync --dev installs regular dependencies and
development dependencies. The command pipenv sync only installs regular
dependencies.
  • Loading branch information
liammulh committed Mar 26, 2024
1 parent 592c038 commit 4df3a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For all other command line tasks, the affils project uses [Invoke](https://docs.
1. Install Python 3.12+.
2. Install [Pipenv](https://pipenv.pypa.io/en/latest/index.html): `pip install --user pipenv`.
3. Activate a virtual environment: `pipenv shell`.
4. Install dependencies: `pipenv sync`.
4. Install dependencies: `pipenv sync --dev`.
5. Run the development server: `invoke dev` or `inv dev`.
6. Read the `tasks.py` module for other command line tasks.
7. Read the [standards document](./doc/standards.md).
Expand Down

0 comments on commit 4df3a62

Please sign in to comment.