From f4bb3094708edcfb83b151794af734b62007ec20 Mon Sep 17 00:00:00 2001 From: alexnicita Date: Tue, 6 Aug 2024 15:57:32 -0400 Subject: [PATCH] readme clarification --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1d2e1e2..5c096af 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This repo is inteded for use with Python 3.9 2. Create the virtual environment ``` - python -m venv venv + virtualenv --python=python3.9 .venv ``` 3. Activate the virtual environment @@ -34,13 +34,13 @@ This repo is inteded for use with Python 3.9 - On Windows: ``` - venv\Scripts\activate + .venv\Scripts\activate ``` - On macOS and Linux: ``` - source venv/bin/activate + source .venv/bin/activate ``` 4. Install the required dependencies: @@ -52,6 +52,11 @@ This repo is inteded for use with Python 3.9 5. Set up your environment variables: - Create a `.env` file in the project root directory + + ``` + cp .env.example .env + ``` + - Add the following environment variables: ```