We welcome contributions to Eolic! Here are some guidelines to help you get started.
- Fork the repository on GitHub.
- Clone your fork to your local machine:
git clone https://github.com/your-username/eolic.git
- Navigate to the project directory:
cd eolic - Install the required dependencies:
poetry install
We follow the PEP 8 coding style guide. Please make sure your code adheres to this standard.
We use pre-commit hooks to ensure code quality. Install the pre-commit hooks with:
pre-commit install- Create a new branch for your feature or bug fix:
git checkout -b my-feature-branch
- Make your changes.
- Commit your changes:
git commit -m "Description of my feature" - Push your branch to your fork on GitHub:
git push origin my-feature-branch
- Open a pull request on GitHub.