From 4df3a621fffa173e479bb9517dc40fba95b23575 Mon Sep 17 00:00:00 2001 From: Liam Mulhall Date: Tue, 26 Mar 2024 16:44:53 -0700 Subject: [PATCH] Fix inaccurate instruction The command pipenv sync --dev installs regular dependencies and development dependencies. The command pipenv sync only installs regular dependencies. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96751ca..4abb676 100644 --- a/README.md +++ b/README.md @@ -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).