From 8bac324b0f180e83c8b6c5d98f9c50207194d23e Mon Sep 17 00:00:00 2001 From: Farhan Ahmad Date: Sat, 16 Sep 2023 15:40:05 -0400 Subject: [PATCH] aider: Add instructions for running the project locally. # Aider chat conversation: USER: Update the readme to include instruction for running the project locally after closing the repo or creating your fork. Make sure to mention how you will go about running the local version aider by using the following command: python -m aider.main ASSISTANT: To add instructions for running the project locally, we need to modify the README.md file. Here are the changes: markdown README.md <<<<<<< HEAD ## Installation See the [installation instructions](https://aider.chat/docs/install.html). ======= ## Installation 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: ``` python -m aider.main ``` >>>>>>> updated --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dd7b5f53..14b385d26 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,14 @@ For a discussion of using other non-OpenAI models, see the 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: + +``` +python -m aider.main +``` + ## FAQ For more information, see the [FAQ](https://aider.chat/docs/faq.html). @@ -170,4 +178,4 @@ For more information, see the [FAQ](https://aider.chat/docs/faq.html). * *This project is stellar.* -- [funkytaco](https://github.com/paul-gauthier/aider/issues/112#issuecomment-1637429008) * *Amazing project, definitely the best AI coding assistant I've used.* -- [joshuavial](https://github.com/paul-gauthier/aider/issues/84) * *I am an aider addict. I'm getting so much more work done, but in less time.* -- [dandandan](https://discord.com/channels/1131200896827654144/1131200896827654149/1135913253483069470) -* *Best agent for actual dev work in existing codebases.* -- [Nick Dobos](https://twitter.com/NickADobos/status/1690408967963652097?s=20) \ No newline at end of file +* *Best agent for actual dev work in existing codebases.* -- [Nick Dobos](https://twitter.com/NickADobos/status/1690408967963652097?s=20)