How to Contribute
Akkuea is an open-source project, and we welcome contributions! Here's how you can help:
Fork the Repository:
Click the Fork button in the top-right corner of the repository page to create a copy under your GitHub account.

Clone the fork:
git clone https://github.com/akkuea/akkuea.git
Create a new branch:
git checkout -b branch-name
Make Changes:
Make changes in your local repository.
Add changes to Git:
git add .
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)
Push Your Changes:
git push origin your-branch-name
Last updated