Skip to content

Latest commit

 

History

History
142 lines (86 loc) · 5.45 KB

CONTRIBUTING.md

File metadata and controls

142 lines (86 loc) · 5.45 KB

How to contribute to React Developers Kenya (Reactdevske) Website

Please note we have a code of conduct, please follow it in all your interactions with the project.

Contributing procedure

Find an issue to work on

  • You can contribute to this project by either creating an issue or by checking out the open issues available.

1. Submit an issue

  • Create a new issue
  • Comment on the issue (if you'd like to be assigned to it) - that way the issue can be assigned to you.

2. Open issues

  • Go to open issues
  • select an issue of your choice that is open or need help or is up-for-grabs and is not assigned.
  • Comment on the issue (if you'd like to be assigned to it) - that way the issue can be assigned to you.

Fork the repository (repo)

Set up your local environment (optional)

If you're ready to contribute and create your PR, it will help to set up a local environment so you can see your changes.

  1. Set up your development environment

    • install your favorite text editor/IDE
    • install Nodejs

  2. Clone your fork

If this is your first time forking our repo, this is all you need to do for this step:

git clone git@github.com:[your_github_handle]/reactdevske-website.git && cd reactdevske-website

Make sure you checkout the develop branch by running the command git checkout develop

If you've already forked the repo and created the develop branch, you'll want to ensure your fork and your develop branch is configured and that it's up to date. This will save you the headache of potential merge conflicts.

To configure your fork:

$ git remote add upstream https://github.com/reactdeveloperske/reactdevske-website.git

To sync your fork and branch with the latest changes:

git checkout develop
git fetch upstream
git merge upstream/develop
  1. Install dependencies

We use npm to manage dependencies. To install all dependencies, run:

npm install

Make awesome changes!


  1. Create new branch for your changes
git checkout -b new_branch_name
  1. start development server
npm run dev


⚠️ RoadBlock: Missing environment variables

You may have noticed some error about providing a form key. This is because we use Formspree to handle our contact form. To get around this, you can:

  • Use your own Formspree account and set the FORMSPREE_KEY environment variable to your key. (refer to the .env.example file for guidance on where to put your formspee key).

You may have also noticed a second error about missing required parameters: sitekey. This is because we use reCAPTCHA to prevent spam. To get around this, you can:

  • Use your own reCAPTCHA account and set the RECAPTCHA_SITE_KEY environment variable to your keys. (refer to the .env.example file for guidance on where to put your recaptcha site key).

Both of these changes will require you to create a .env file in the root directory of the project. You can copy the contents of the .env.example file and paste them into the .env file. Then, you can add your keys to the appropriate variables.



  1. Make changes to the codebase
  • Open this directory in your favorite text editor / IDE, and see your changes live by visiting localhost:3000 from your browser
  • Pro Tip: Explore scripts within package.json for more build options
  • Pro Tip: Use Prettier to format your code before committing by running npm run prettier:check and npm run prettier:format to check and fix formatting issues
  1. Add changes made to the repo addressing an issue
git add [file_name]
  1. Commit and prepare for pull request (PR). In your PR commit message, reference the issue it resolves (see how to link a commit message to an issue using a keyword.
git commit -m "brief description of changes [Fixes #1234]"
  1. Push to your GitHub account
git push -u origin [feature_branch]

Submit your Pull Request (PR)🚀

  • After your changes are commited to your GitHub fork, submit a pull request (PR) to the develop branch of the reactdeveloperske/reactdevske-website repo
  • In your PR description, reference the issue it resolves (see linking a pull request to an issue using a keyword)
    • ex. Updates out of date content [Fixes #1234]

Sit back, relax and wait for your PR to be reviewed/merged

  • We'll review your PR as soon as possible
  • We may suggest some changes or improvements or alternatives.