Skip to content

Commit

Permalink
readme clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnicita committed Aug 6, 2024
1 parent 004d11b commit f4bb309
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ 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

- 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:
Expand All @@ -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:

```
Expand Down

0 comments on commit f4bb309

Please sign in to comment.