> For the complete documentation index, see [llms.txt](https://docs.luxoria.bluepelicansoft.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.luxoria.bluepelicansoft.com/docs/contributing.md).

# Contributing at Luxoria

## Introduction

This is the official documentation for the Luxoria project.

* [How to contribute](#how-to-contribute)
* [Development guidelines](/docs/luxplatform/development.md)

## Are you ready for development ?

If you are ready to start developing, please follow the [development guidelines](/docs/luxplatform/development.md).

## How to contribute

To contribute to this documentation, please follow the steps below:

### Step 1: Fork the repository

* Click on the `Fork` button at the top right corner of the repository.

### Step 2: Clone the repository

* Clone the repository to your local machine using the following command:

```bash
git clone REPOSITORY_URL
```

### Step 3: Create a new branch

* Create a new branch using the following command:

```bash
git checkout -b BRANCH_NAME
```

### Step 4: Make changes

* Make the necessary changes to the documentation.

### Step 5: Commit changes

* Commit the changes using the following command:

```bash
git add .
git commit -m "COMMIT_MESSAGE"
```

### Step 6: Push changes

* Push the changes to the repository using the following command:

```bash
git push origin BRANCH_NAME
```

### Step 7: Create a pull request

* Create a pull request from your forked repository to the original repository.
