1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35# Contributing to sqlaxe
Thank you for considering contributing to our project! Here are some guidelines to help you get started:
## Getting Started
1. Set up the project using the [README.md](README.md).
2. Create a new branch for your feature or bugfix:
```bash
git checkout -b feature/your-feature-name
```
## Making Changes
1. Make your changes in the new branch.
2. Optionally, add your name to the [CONTRIBUTORS.md](CONTRIBUTORS.md) file.
3. Commit your changes with a descriptive commit message.
```bash
git commit -m "Add feature: description of your feature"
```
4. Push your changes to your fork.
```bash
git push origin feature/your-feature-name
```
## Submitting a Pull Request
1. Open a pull request to the main repository.
2. Provide a clear description of your changes and any related issues.
**Thank you for your contributions!**