From 5c3ea9a9c5358853a206c24e86ffa2a5144396d1 Mon Sep 17 00:00:00 2001 From: oliviasculley Date: Tue, 3 Oct 2023 18:07:37 -0400 Subject: [PATCH] fix install directions --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 21e9dd0..7aeb48f 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,8 @@ The following needs to be included in an appropriate Apache .conf file, usually 1. Create a virtual environment with `python -m venv env`. 1. Activate the venv with `source env/bin/activate` 1. Use `deactivate` to exit the venv if needed. -1. Install dependencies using `pip install -r requirements.txt` +1. Install project dependencies using `pip install .` or `pip install .[test]` + to install development dependencies for testing 1. Run the app with `python src/bot.py`! 1. Proxy a web server to the running app's port, as defined in the .envrc `PORT` value.