Steps to follow
git clone https://github.com/[YOUR_GITHUB_USERNAME]/[REPO_NAME].git
Navigate to the directory and run the following code. This will install all the dependencies you need. The project has been created using npm package manager.
npm install
Note : You can have different localhost other than 3000, use that in that case.
Never push credentials to GitHub
For pushing your updates make a new branch in this format:
git checkout -b "branch name"
Make changes and
git add .
git commit -m "comments"
git push -u origin "branch name"
Click on contribute and perform a Pull Request. Describe a bit what changes you have made and try to attach relevant screenshots. NOTE: Keep in mind, make your PRs to the dev branch only. Follow the Pull Request Template strictly.
Thank you for contributing :)