Contributing
We welcome all kinds of contributions to Kepler from the community!
For an in-depth guide on how to get started, checkout the Contributing Guide here.
Kepler adopters
You and your organisation are using Kepler? That’s awesome. We would love to hear from you! 💚
Adding your organisation
The yaml file in here contains a list of all Kepler adopters.
If you want to add yourself just add an entry there and once merged you will be found under adopters.
To do so follow these steps:
- Fork the kepler-doc repository.
- Clone it locally with
git clone https://github.com/<YOUR-GH-USERNAME>/kepler-doc.git
. - (Optional) Add the logo of your organisation to docs/fig/logos. Good practice is for the logo to be called e.g. MY-ORG.png (=> docs/fig/logos/default.svg is the Kepler logo, it is used when no organisation logo is provided.)
- Add an entry to the YAML file with the name of your organisation, url that links to its website, and the path to the logo. Example:
- name: Kepler
url: https://sustainable-computing.io/
logo: logos/kepler.svg
- Save the file, then do
git add -A
and commit usinggit commit -s -m "Add MY-ORG to adopters"
(commit signoff is required, see DCO of the kepler project). - Push the commit with
git push origin main
. - Open a Pull Request to kepler-doc