Skip to content
Kherld edited this page Sep 26, 2023 · 13 revisions

Welcome to the developer-center wiki!

Islam Made Easy Developer Center Guidelines

Requirements to contribute (IME APP)

  • Basic knowledge of programming is mandatory
  • The ability to use Git and GitHub
  • Some knowledge of Dart and how to use Flutter is preferable for a head start.
  • UI/UX Design skills are appreciable but not mandatory
  • Some idea about Firebase or willingness to learn it
  • Then please see Contribution Guidelines for Developers

How to make a Pull Request:

1. Fork this repository.

2. Clone the forked repository.

git clone https://github.com/Islam-Made-Easy/islam_made_easy.git

3. Navigate to the project directory.

cd islam_made_easy

4. Checkout from the main to the development branch.

git checkout development

5. Make changes in the source code.

6. Commit your changes.

  git add .
  git commit -m "<your_commit_message>"

7. Push your local branch to the remote repository.

git push -u origin development