Devshelpdevs web application for donors
-
Fork this repository
-
Open your command terminal
-
Type this following commands one after the other
git clone https://github.com/DevsHelpDevs/devshelpdevs_webapp.git cd devshelpdevs_webapp yarn
-
You will notice you are on the (dev) branch, do not start coding immediately. First create a new branch out of the dev branch using the following commands
git checkout -b "your_new_branch_name"
NOTE * These are conventions for naming branches are
- For new features use => "feature/your_username/feature-name"
- For bug fix use => "bugfix/your_username/bug-name"
- For hotfix use => "hotfix/your_username/hotfix-name"
-
Then you can start coding.
-
When done, always first pull the latest changes and updates from the repository using
git pull origin dev
. -
Stage your all changes using
git add .
. -
Commit your changes using
git commit -m "your commit message
. -
Push your code to github using
git push -u origin "your_new_branch_name"
. -
Make a pull request on github.
RUN: yarn run dev
Then visit http://localhost:3000 to see it live.