- Fork this repo, read how to fork repo
- Clone the project to your local machine
- Install all dependencies :
npm install
oryarn
- Create branch with your intra name, ex:
eaouassa
.❗ Never use the
master
branch to create PR ❗
git checkout -b <branch-name>
# <branch-name> : ex eaouassa
- Add a file with your name
intraName.yml
(ex:eaouassa.yml
) to the./contributors/
directory in your branch. - Add code with your infos like this:
firstName: EL HOUCINE
lastName: AOUASSAR
bio: Front end Web Developer
github: awixor
- Check you change in your local machine
yarn start
ornpm run start
- Your site is now running at
http://localhost:8000
! - Check the site and Make sure your name and profile avatar is on the list.
- Commit changes and push
git add <path-to-the-yaml-file>
#Now commit those changes using the git commit command:
git commit -m "Add <your-name> to Contributors list"
#replacing <your-name> with your name.
#push
git push origin <branch-name>
- Create Pull-Request to
master
branch in this repository, read how creating PR