> For the complete documentation index, see [llms.txt](https://aita-1.gitbook.io/aita/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aita-1.gitbook.io/aita/contribution.md).

# Contribution

## How to contribute

1. Fork & Clone the repository
2. Create a new branch

## Environment setup

We are using python 3.9+ for this project. You can install the required packages by running the following command:

```bash
make install
```

## Running the tests

You can run the tests by running the following command:

```bash
make test
```

## Check and fix the code style

You can check the code style by running the following command:

```bash
make check-codestyle
```

to fix the code style run the following command:

```bash
make codestyle
```

## Build the project

You can build the project by running the following command:

```bash
make build
```
