How to Contribute

Akkuea is an open-source project, and we welcome contributions! Here's how you can help:

  1. Fork the Repository:

Click the Fork button in the top-right corner of the repository page to create a copy under your GitHub account.

  1. Clone the fork:

git clone https://github.com/akkuea/akkuea.git
  1. Create a new branch:

git checkout -b branch-name
  1. Make Changes:

Make changes in your local repository.

  1. Add changes to Git:

git add .
  1. Write Commits:

git commit -m "[type] description"

Commit Types:

  • [feat]: A new feature

  • [fix]: A bug fix

  • [docs]: Documentation changes

  • [style]: Formatting changes (no logic changes)

  • [refactor]: Code restructuring without changing behavior

  • [perf]: Performance improvements

  • [test]: Adding or updating tests

  • [build]: Changes to build system or dependencies

  • [ci]: CI configuration changes

  • [chore]: Miscellaneous tasks (e.g., dependency updates)

  1. Push Your Changes:

git push origin your-branch-name

Last updated