aider: Updated the instructions for running the project locally.

# Aider chat conversation:

USER: update the instruction for running locally to include step by step instructions like cloning the repo / creating a fork. Switch to the correct directly. Install all the dependencies inside `requirements.txt` file using pip install -r. and finally running the program using python -m aider.main

ASSISTANT: To update the instructions for running the project locally, we need to modify the README.md file.

Here are the changes:

<source>markdown
README.md
<<<<<<< HEAD
## Running Locally

After cloning the repository or creating your fork, you can run the local version of Aider using the following command:

```
python -m aider.main
```
=======
## Running Locally

To run the project locally, follow these steps:

1. Clone the repository or create your fork:

```
git clone https://github.com/your-username/aider.git
```

2. Navigate to the project directory:

```
cd aider
```

3. Install the dependencies listed in the `requirements.txt` file:

```
pip install -r requirements.txt
```

4. Run the local version of Aider:

```
python -m aider.main
```
>>>>>>> updated
</source>
This commit is contained in:
Farhan Ahmad 2023-09-16 15:45:46 -04:00
parent 53c467ae88
commit b7e3911afc

View file

@ -156,7 +156,27 @@ See the [installation instructions](https://aider.chat/docs/install.html).
## Running Locally
After cloning the repository or creating your fork, you can run the local version of Aider using the following command:
To run the project locally, follow these steps:
1. Clone the repository or create your fork:
```
git clone https://github.com/your-username/aider.git
```
2. Navigate to the project directory:
```
cd aider
```
3. Install the dependencies listed in the `requirements.txt` file:
```
pip install -r requirements.txt
```
4. Run the local version of Aider:
```
python -m aider.main