We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting an issue
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
The code of conduct is described in CODE_OF_CONDUCT.md
.
All changes happen through pull requests. Pull requests are the best way to propose changes. We actively welcome your pull requests and invite you to submit pull requests directly here, and after review, these can be merged into the project.
This project is using the conventional commits standard. Please follow these steps to ensure your commit messages are standardized:
- Make sure your shell path is in the root of the project (not inside any of the packages).
- Run
yarn
. - Stage the files you are committing with
git add [files]
. - Run
yarn commit
. This will start an interactive prompt that generates your commit message:- Select the type of change.
- Type the scope. This is either
global
for project-wide changes or one of the packages (frontend, backend etc.). - Write a short, imperative tense description of the change.
- If the above was not sufficient, you may now write a longer description of your change (otherwise press enter to leave blank).
- y or n for whether there are any breaking changes (e.g. changing the props of a component, changing the JSON structure of an API response).
- y or n for whether this change affects an open issue, if positive you will be prompted to enter the issue number.
- Your commit message has now been created, you may push to your fork and open a pull request (read below for further instructions).
- Fork the repo and create your branch (usually named
patch-%the number of PRs you've already made%
) fromstaging
. - If you've added code that should be tested, add some test examples.
- Ensure to describe your pull request.
Navigate to /frontend
- Run
yarn
- Run
yarn staging
(this tells React to connect to a hosted version of the backend for development purposes). - Read
frontend/README.md
for more information and fixes for known development issues.
-
Fork the repository (click on
fork
in the top right corner of the screen) -
In the forked repository, navigate to
frontend/src/languages
and then choose your language and open thetext.ts
file -
Click on
edit
in the top right corner of the window
- Make the changes in the translation(make sure you are using the correct json syntax)
- click
commit changes
in the bottom of the page and addfix(frontend): update {my language} Translation
as the commit message(fix
if you are fixing tranlsations andfeat
if you are adding a language)(leave the description empty!) - Go to the main page of the repository and under
Contribute
, click onOpen Pull Request
For VSCode users, we're able to use devcontainers which allows you to create development environments that already have all the tools and services configured and ready to go.
NOTE: If your bug is a security vulnerability, please instead see the security policy
We use GitHub issues to track public bugs. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue. Report a bug by opening a new issue; it's that easy!
- Q: [The Question?]
- A: [The Answer!]
Great Feature Requests tend to have:
- A quick idea summary.
- What & why you wanted to add the specific feature.
- Additional context like images, links to resources to implement the feature etc, etc.
By contributing to Kidala upload, you agree that your contributions will be licensed under the LICENSE file.