Skip to content

Commit d8826e8

Browse files
committed
Update repository references from novara-ai to gorillamania 🔄
This commit updates all references in the codebase from the old repository (novara-ai/aicodebot) to the new one (gorillamania/AICodeBot). Changes include updates in CONTRIBUTING.md, README.md, and setup.py files. This ensures that all links and references within the project point to the correct location.
1 parent 5cfe2e3 commit d8826e8

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
### Test and Build
66

7-
[![GitHub Build](https://github.com/novara-ai/aicodebot/actions/workflows/build.yml/badge.svg)](https://github.com/novara-ai/aicodebot/actions?query=build)
8-
[![CodeCov](https://codecov.io/gh/novara-ai/aicodebot/branch/main/graph/badge.svg)](https://codecov.io/gh/novara-ai/aicodebot)
7+
[![GitHub Build](https://github.com/gorillamania/AICodeBot/actions/workflows/build.yml/badge.svg)](https://github.com/gorillamania/AICodeBot/actions?query=build)
8+
[![CodeCov](https://codecov.io/gh/gorillamania/AICodeBot/branch/main/graph/badge.svg)](https://codecov.io/gh/gorillamania/AICodeBot)
99
[![Pytest](https://img.shields.io/badge/%F0%9F%A7%AA-Pytest-blue)](https://docs.pytest.org/en/stable/contents.html)
1010

1111
### Code Quality
@@ -14,7 +14,7 @@
1414
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
1515
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1616
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
17-
[![Super Linter](https://github.com/novara-ai/aicodebot/actions/workflows/linter.yml/badge.svg)](https://github.com/novara-ai/aicodebot/actions/workflows/linter.yml)
17+
[![Super Linter](https://github.com/gorillamania/AIcodeBot/actions/workflows/linter.yml/badge.svg)](https://github.com/gorillamania/AIcodeBot/actions/workflows/linter.yml)
1818

1919
### Infrastructure
2020

@@ -25,7 +25,7 @@
2525

2626
We need your help to make AICodeBot better.
2727

28-
We welcome contributions of all kinds, including code, documentation, bug reports, feature requests, and more. We use [GitHub issues](https://github.com/novara-ai/AICodeBot/issues) to track all of these.
28+
We welcome contributions of all kinds, including code, documentation, bug reports, feature requests, and more. We use [GitHub issues](https://github.com/gorillamania/AICodeBot/issues) to track all of these.
2929

3030
In particular, we need help with:
3131

@@ -50,7 +50,7 @@ We use the normal fork/pull request workflow. If you're not familiar with this,
5050
1. Clone the repository
5151

5252
```bash
53-
git clone git@github.com:novara-ai/aicodebot.git
53+
git clone git@github.com:gorillanania/AICodeBot.git
5454
```
5555

5656
2. Set up a virtual environment (recommend using [virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/))
@@ -95,7 +95,7 @@ Highly recommend you set up your editor to run all of these on each file save, i
9595
### Testing
9696

9797
Install the test dependencies with
98-
`pip install -r requirements/requirements-test.txt` - this is what is used in the [GitHub Actions workflow](https://github.com/novara-ai/AICodeBot/actions), you can look at the [build workflow](.github/workflows/build.yml) to see how to run the tests.
98+
`pip install -r requirements/requirements-test.txt` - this is what is used in the [GitHub Actions workflow](https://github.com/gorillamania/AICodeBot/actions), you can look at the [build workflow](.github/workflows/build.yml) to see how to run the tests.
9999

100100
We use `pytest` for testing. It will skip some tests if OPENAI_API_KEY is not set, so to test everything, run pytest with your OPENAI_API_KEY set.
101101

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We've planned to build out multiple different interfaces for interacting with AI
1010

1111
⚠️ AICodeBot currently uses OpenAI's ChatGPT large language models, which can hallucinate and be confidently wrong. Sometimes it does dumb things, which is why we have you confirm before it does anything permanent. Much like Tesla's Full Self Driving, you have to keep your hands on the wheel.
1212

13-
We're using AICodeBot to build AICodeBot, and it's getting better all the time.️ We're looking for contributors to help us build it out. See [CONTRIBUTING](https://github.com/novara-ai/AICodeBot/blob/main/CONTRIBUTING.md) for more.
13+
We're using AICodeBot to build AICodeBot, and it's getting better all the time.️ We're looking for contributors to help us build it out. See [CONTRIBUTING](https://github.com/gorillamania/AICodeBot/blob/main/CONTRIBUTING.md) for more.
1414

1515
### What it's not
1616

@@ -118,4 +118,4 @@ Technology itself is amoral, it just imbues the values of the people who create
118118

119119
## Development / Contributing
120120

121-
We'd love your help! If you're interested in contributing, here's how to get started. See [CONTRIBUTING](https://github.com/novara-ai/AICodeBot/blob/main/CONTRIBUTING.md) for more details.
121+
We'd love your help! If you're interested in contributing, here's how to get started. See [CONTRIBUTING](https://github.com/gorillamania/AICodeBot/blob/main/CONTRIBUTING.md) for more details.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
name="aicodebot",
1616
python_requires=">=3.9",
1717
version=version,
18-
url="https://github.com/novara_ai/aicodebot",
18+
url="https://github.com/gorillamania/AICodeBot",
1919
author="Nick Sullivan",
20-
description="Your AI-powered coding companion: AI Code Bot 🤖",
20+
description="Your AI-powered coding sidekick 🤖",
2121
long_description=long_description,
2222
long_description_content_type="text/markdown",
2323
install_requires=requirements,

0 commit comments

Comments
 (0)